XooCode(){

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.

Highlight legend:Required by GoogleRecommendedOptional
schema.org/PerformingArtsEvent
<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.

schema.org/PerformingArtsEvent (minimal)
<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.

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.

  1. 01

    Using PerformingArtsEvent when a more specific type exists

    Wrong
    "@type": "PerformingArtsEvent" for a concert
    Right
    "@type": "MusicEvent" for concerts, "DanceEvent" for dance, "TheaterEvent" for theater, "ComedyEvent" for comedy

    PerformingArtsEvent is the generic parent. Use the more specific subtype when the genre is known. Only fall back to PerformingArtsEvent for mixed-genre showcases.

Comments

Loading comments...

Leave a comment