PerformingArtsEvent
PerformingArtsEvent is an Event subtype for live performances that span multiple genres. If you know the specific genre, use the more specific subtype: MusicEvent, DanceEvent, TheaterEvent, or ComedyEvent. Use PerformingArtsEvent when the event mixes genres or does not fit any specific subtype. It adds no properties of its own.
For a complete property walkthrough, see the Event example. Every property shown there applies to PerformingArtsEvent. Replace "@type": "Event" with "@type": "PerformingArtsEvent".
Full example of schema.org/PerformingArtsEvent json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "PerformingArtsEvent",
"name": "Thunderdome Performing Arts Showcase",
"description": "An evening of music, dance, and spoken word. Local performers from the Dunmore arts community.",
"image": "https://thunderdomedunmore.com/events/arts-showcase-2026/poster-16x9.jpg",
"startDate": "2026-10-25T19:00:00-04:00",
"endDate": "2026-10-25T22:00:00-04:00",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"location": {
"@type": "Place",
"name": "The Thunderdome",
"address": { "@type": "PostalAddress", "streetAddress": "500 Main Street", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
},
"offers": { "@type": "Offer", "price": "20.00", "priceCurrency": "USD", "availability": "https://schema.org/InStock" },
"isAccessibleForFree": false
}
</script>Minimal valid version
The smallest markup that still produces a valid PerformingArtsEvent entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "PerformingArtsEvent",
"name": "Thunderdome Performing Arts Showcase",
"startDate": "2026-10-25T19:00:00-04:00",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"location": { "@type": "Place", "name": "The Thunderdome", "address": { "@type": "PostalAddress", "streetAddress": "500 Main Street", "addressLocality": "Dunmore", "addressRegion": "PA", "addressCountry": "US" } },
"image": "https://thunderdomedunmore.com/events/arts-showcase-2026/poster-16x9.jpg",
"description": "An evening of music, dance, and spoken word."
}
</script>Google rich results this unlocks
Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.
- Google docsEvent rich resultprimary
Common PerformingArtsEvent mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
Using PerformingArtsEvent when a more specific type exists
Wrong"@type": "PerformingArtsEvent" for a concertRight"@type": "MusicEvent" for concerts, "DanceEvent" for dance, "TheaterEvent" for theater, "ComedyEvent" for comedyPerformingArtsEvent is the generic parent. Use the more specific subtype when the genre is known. Only fall back to PerformingArtsEvent for mixed-genre showcases.
Schema properties in this example
Comments
Loading comments...