PublicationEvent

Canonical URL: http://schema.org/PublicationEvent

Thing > Event > PublicationEvent

A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.

Usage: Between 100 and 1000 domains
PropertyExpected TypeDescription
Properties from PublicationEvent
isAccessibleForFree Boolean A flag to signal that the publication is accessible for free. Supersedes free.
publishedOn BroadcastService A broadcast service associated with the publication event.
Properties from Event
about Thing The subject matter of the content.
actor Person An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip. Supersedes actors.
aggregateRating AggregateRating The overall rating, based on a collection of reviews or ratings, of the item.
attendee Organization  or
Person 
A person or organization attending the event. Supersedes attendees.
audience Audience An intended audience, i.e. a group for whom something was created. Supersedes serviceAudience.
composer Organization  or
Person 
The person or organization who wrote a composition, or who is the composer of a work performed at some event.
contributor Organization  or
Person 
A secondary contributor to the CreativeWork or Event.
director Person A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip. Supersedes directors.
doorTime DateTime The time admission will commence.
duration Duration The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.
endDate Date  or
DateTime 
The end date and time of the item (in ISO 8601 date format).
eventStatus EventStatusType An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.
funder Organization  or
Person 
A person or organization that supports (sponsors) something through some kind of financial contribution.
inLanguage Language  or
Text 
The language of the content or performance or used in an action. Please use one of the language codes from the IETF BCP 47 standard. See also availableLanguage. Supersedes language.
isAccessibleForFree Boolean A flag to signal that the publication is accessible for free. Supersedes free.
location Place  or
PostalAddress  or
Text 
The location of for example where the event is happening, an organization is located, or where an action takes place.
maximumAttendeeCapacity Integer The total number of individuals that may attend an event or venue.
offers Offer An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event.
organizer Organization  or
Person 
An organizer of an Event.
performer Organization  or
Person 
A performer at the event—for example, a presenter, musician, musical group or actor. Supersedes performers.
previousStartDate Date Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.
recordedIn CreativeWork The CreativeWork that captured all or part of this Event.
Inverse property: recordedAt.
remainingAttendeeCapacity Integer The number of attendee places for an event that remain unallocated.
review Review A review of the item. Supersedes reviews.
sponsor Organization  or
Person 
A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.
startDate Date  or
DateTime 
The start date and time of the item (in ISO 8601 date format).
subEvent Event An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference. Supersedes subEvents.
Inverse property: superEvent.
superEvent Event An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.
Inverse property: subEvent.
translator Organization  or
Person 
Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.
typicalAgeRange Text The typical expected age range, e.g. '7-9', '11-'.
workFeatured CreativeWork A work featured in some event, e.g. exhibited in an ExhibitionEvent. Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).
workPerformed CreativeWork A work performed in some event, for example a play performed in a TheaterEvent.
Properties from Thing
additionalType URL An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.
alternateName Text An alias for the item.
description Text A description of the item.
disambiguatingDescription Text A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.
identifier PropertyValue  or
Text  or
URL 
The identifier property represents any kind of identifier for any kind of Thing, such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See background notes for more details.
image ImageObject  or
URL 
An image of the item. This can be a URL or a fully described ImageObject.
mainEntityOfPage CreativeWork  or
URL 
Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See background notes for details.
Inverse property: mainEntity.
name Text The name of the item.
potentialAction Action Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.
sameAs URL URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.
url URL URL of the item.


Instances of PublicationEvent may appear as values for the following properties

PropertyOn TypesDescription
publication CreativeWork A publication event associated with the item.
releasedEvent CreativeWork The place and time the release was issued, expressed as a PublicationEvent.

Available properties in extensions


More specific Types

Examples

Example 1
An example of a single release of
the Beatles White Album, which was
released in the US and Canada on different dates.
Not available yet.
Not available yet.
<script type="application/ld+json">
{
    "@context": "http://schema.org",
    "@type": "MusicRelease",
    "name": "The Beatles",
    "alternateName": "White Album",
    "musicReleaseFormat": "http://schema.org/VinylFormat",
    "duration": "PT1H33M50S",
    "inLanguage": "EN",
    "recordLabel": {
        "@type": "Organization",
        "@id": "http://musicbrainz.org/label/cf7fc5cf-e011-4ef4-b511-cd0188537910",
        "name": "Apple Records"
    },
    "catalogNumber": "SWBO 101",
    "releasedEvent": [
        {
            "@type": "PublicationEvent",
            "startDate": "1968-11-22",
            "location": {
                "@type": "Country",
                "name": "Canada"
            }
        },
        {
            "@type": "PublicationEvent",
            "startDate": "1968-11-25",
            "location": {
                "@type": "Country",
                "name": "United States"
            }
        }
    ],
    "producer": [
        {
            "@type": "Person",
            "name": "George Martin"
        },
        {
            "@type": "Person",
            "name": "Chris Thomas"
        }
    ]
}
</script>

Schema Version 3.2