ai-ops-templates/templates/schema-event.json
DMleadgen 3cb8d3cb3f Initial commit: AI Ops Templates repository
- Schema.org JSON-LD templates (product, event, local-business, faq)
- Brand, UI, SEO, and decision guide rules
- Working code snippets (vendor-card, schema-inject, deploy-webhook)
- JSON schemas for project config validation
- Client presets (slc-bride, default)
- Self-update protocol with changelog tracking

Made-with: Cursor
2026-03-06 16:03:31 -07:00

45 lines
1.3 KiB
JSON

{
"_meta": {
"last_updated": "2026-03-06T15:52:00Z",
"version": "1.0.0",
"description": "Event structured data template (Schema.org JSON-LD)"
},
"@context": "https://schema.org",
"@type": "Event",
"name": "{{EVENT_NAME}}",
"description": "{{EVENT_DESCRIPTION}}",
"image": "{{EVENT_IMAGE_URL}}",
"startDate": "{{START_DATE}}",
"endDate": "{{END_DATE}}",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/{{ATTENDANCE_MODE}}",
"location": {
"@type": "{{LOCATION_TYPE}}",
"name": "{{LOCATION_NAME}}",
"address": {
"@type": "PostalAddress",
"streetAddress": "{{STREET_ADDRESS}}",
"addressLocality": "{{CITY}}",
"addressRegion": "{{STATE}}",
"postalCode": "{{POSTAL_CODE}}",
"addressCountry": "{{COUNTRY}}"
}
},
"organizer": {
"@type": "Organization",
"name": "{{ORGANIZER_NAME}}",
"url": "{{ORGANIZER_URL}}"
},
"offers": {
"@type": "Offer",
"url": "{{TICKET_URL}}",
"price": "{{PRICE}}",
"priceCurrency": "{{CURRENCY}}",
"availability": "https://schema.org/{{TICKET_AVAILABILITY}}",
"validFrom": "{{SALE_START_DATE}}"
},
"performer": {
"@type": "{{PERFORMER_TYPE}}",
"name": "{{PERFORMER_NAME}}"
}
}