repository
stringclasses
528 values
commit
stringlengths
40
40
commitDate
timestamp[s]
path
stringlengths
11
149
repoStars
int64
5
94.9k
repoLastFetched
stringclasses
528 values
content
stringlengths
48
736k
license
stringclasses
14 values
language
stringclasses
7 values
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/IceCreamShop.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/IceCreamShop", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "FoodEstablishment.schema.json", "description": "A food-related business." } ], "description": "An ice cream shop.", "format": "http://schema.org/IceCreamShop", "title": "IceCreamShop", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/MusicGroup.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:MusicGroup", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:PerformingGroup", "description": "A performance group, such as a band, an orchestra, or a circus." } ], "description": "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.", "properties": { "album": { "description": "A music album.", "oneOf": [ { "$ref": "schema:MusicAlbum" }, { "items": { "$ref": "schema:MusicAlbum" }, "type": "array" } ] }, "albums": { "description": "A collection of music albums.", "oneOf": [ { "$ref": "schema:MusicAlbum" }, { "items": { "$ref": "schema:MusicAlbum" }, "type": "array" } ] }, "genre": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "Genre of the creative work, broadcast channel or group." }, "musicGroupMember": { "description": "A member of a music group\u2014for example, John, Paul, George, or Ringo.", "oneOf": [ { "$ref": "schema:Person" }, { "items": { "$ref": "schema:Person" }, "type": "array" } ] }, "track": { "description": "A music recording (track)\u2014usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.", "oneOf": [ { "anyOf": [ { "$ref": "schema:ItemList" }, { "$ref": "schema:MusicRecording" } ] }, { "items": { "anyOf": [ { "$ref": "schema:ItemList" }, { "$ref": "schema:MusicRecording" } ] }, "type": "array" } ] }, "tracks": { "description": "A music recording (track)\u2014usually a single song.", "oneOf": [ { "$ref": "schema:MusicRecording" }, { "items": { "$ref": "schema:MusicRecording" }, "type": "array" } ] } }, "title": "MusicGroup", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Action.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Action", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Thing.schema.json", "description": "The most generic type of item." } ], "description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document.", "format": "http://schema.org/Action", "properties": { "actionStatus": { "description": "Indicates the current disposition of the Action.", "items": { "$ref": "ActionStatusType.schema.json" }, "type": "array" }, "agent": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "The direct performer or driver of the action (animate or inanimate). e.g. John wrote a book." }, "endTime": { "description": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.", "format": "http://schema.org/DateTime" }, "error": { "description": "For failed actions, more information on the cause of the failure.", "items": { "$ref": "Thing.schema.json" }, "type": "array" }, "instrument": { "$ref": "Thing.schema.json", "description": "The object that helped the agent perform the action. e.g. John wrote a book with a pen." }, "location": { "anyOf": [ { "$ref": "Place.schema.json" }, { "$ref": "PostalAddress.schema.json" } ], "description": "The location of for example where the event is happening, an organization is located, or where an action takes place." }, "object": { "$ref": "Thing.schema.json", "description": "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read a book." }, "participant": { "description": "Other co-agents that participated in the action indirectly. e.g. John wrote a book with Steve.", "items": { "oneOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "result": { "$ref": "Thing.schema.json", "description": "The result produced in the action. e.g. John wrote a book." }, "startTime": { "description": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.", "format": "http://schema.org/Time" }, "target": { "description": "Indicates a target EntryPoint for an Action.", "items": { "$ref": "EntryPoint.schema.json" }, "type": "array" } }, "title": "Action", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Organization.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Organization", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Thing.schema.json", "description": "The most generic type of item." } ], "description": "An organization such as a school, NGO, corporation, club, etc.", "format": "http://schema.org/Organization", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Organization" }, "address": { "anyOf": [ { "type": "string" }, { "$ref": "PostalAddress.schema.json" } ], "description": "Physical address of the item." }, "aggregateRating": { "$ref": "AggregateRating.schema.json", "description": "The overall rating, based on a collection of reviews or ratings, of the item." }, "alumni": { "description": "Alumni of an organization.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "areaServed": { "anyOf": [ { "type": "string" }, { "$ref": "AdministrativeArea.schema.json" }, { "$ref": "GeoShape.schema.json" }, { "$ref": "Place.schema.json" } ], "description": "The geographic area where a service or offered item is provided." }, "award": { "description": "An award won by or for this item.", "items": { "type": "string" }, "type": "array" }, "awards": { "description": "Awards won by or for this item.", "items": { "type": "string" }, "type": "array" }, "brand": { "anyOf": [ { "$ref": "Brand.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person." }, "contactPoint": { "description": "A contact point for a person or organization.", "items": { "$ref": "ContactPoint.schema.json" }, "type": "array" }, "contactPoints": { "description": "A contact point for a person or organization.", "items": { "$ref": "ContactPoint.schema.json" }, "type": "array" }, "department": { "description": "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.", "items": { "$ref": "Organization.schema.json" }, "type": "array" }, "dissolutionDate": { "description": "The date that this organization was dissolved.", "format": "date", "type": "string" }, "duns": { "description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.", "type": "string" }, "email": { "description": "Email address.", "items": { "type": "string" }, "type": "array" }, "employee": { "description": "Someone working for this organization.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "employees": { "description": "People working for this organization.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "event": { "description": "Upcoming or past event associated with this place, organization, or action.", "items": { "$ref": "Event.schema.json" }, "type": "array" }, "events": { "description": "Upcoming or past events associated with this place or organization.", "items": { "$ref": "Event.schema.json" }, "type": "array" }, "faxNumber": { "description": "The fax number.", "type": "string" }, "founder": { "description": "A person who founded this organization.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "founders": { "description": "A person who founded this organization.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "foundingDate": { "description": "The date that this organization was founded.", "format": "date", "type": "string" }, "foundingLocation": { "$ref": "Place.schema.json", "description": "The place where the Organization was founded." }, "funder": { "description": "A person or organization that supports (sponsors) something through some kind of financial contribution.", "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" }, "globalLocationNumber": { "description": "The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.", "type": "string" }, "hasOfferCatalog": { "description": "Indicates an OfferCatalog listing for this Organization, Person, or Service.", "items": { "$ref": "OfferCatalog.schema.json" }, "type": "array" }, "hasPOS": { "description": "Points-of-Sales operated by the organization or person.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "interactionStatistic": { "$ref": "InteractionCounter.schema.json", "description": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used." }, "isicV4": { "description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.", "type": "string" }, "legalName": { "description": "The official name of the organization, e.g. the registered company name.", "type": "string" }, "leiCode": { "description": "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.", "items": { "type": "string" }, "type": "array" }, "location": { "anyOf": [ { "type": "string" }, { "$ref": "Place.schema.json" }, { "$ref": "PostalAddress.schema.json" } ], "description": "The location of for example where the event is happening, an organization is located, or where an action takes place." }, "logo": { "description": "An associated logo.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "ImageObject.schema.json" } ] }, "type": "array" }, "makesOffer": { "description": "A pointer to products or services offered by the organization or person.", "items": { "$ref": "Offer.schema.json" }, "type": "array" }, "member": { "description": "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.", "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" }, "memberOf": { "description": "An Organization (or ProgramMembership) to which this Person or Organization belongs.", "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "ProgramMembership.schema.json" } ] }, "type": "array" }, "members": { "description": "A member of this organization.", "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" }, "naics": { "description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.", "type": "string" }, "numberOfEmployees": { "$ref": "QuantitativeValue.schema.json", "description": "The number of employees in an organization e.g. business." }, "owns": { "description": "Products owned by the organization or person.", "items": { "anyOf": [ { "$ref": "OwnershipInfo.schema.json" }, { "$ref": "Product.schema.json" } ] }, "type": "array" }, "parentOrganization": { "$ref": "Organization.schema.json", "description": "The larger organization that this organization is a subOrganization of, if any." }, "publishingPrinciples": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "CreativeWork.schema.json" } ], "description": "The publishingPrinciples property indicates (typically via URL) a document describing the editorial principles of an Organization (or individual e.g. a Person writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a CreativeWork (e.g. NewsArticle) the principles are those of the party primarily responsible for the creation of the CreativeWork.\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a funder) can be expressed using schema.org terminology." }, "review": { "description": "A review of the item.", "items": { "$ref": "Review.schema.json" }, "type": "array" }, "reviews": { "description": "Review of the item.", "items": { "$ref": "Review.schema.json" }, "type": "array" }, "seeks": { "description": "A pointer to products or services sought by the organization or person (demand).", "items": { "$ref": "Demand.schema.json" }, "type": "array" }, "serviceArea": { "anyOf": [ { "$ref": "AdministrativeArea.schema.json" }, { "$ref": "GeoShape.schema.json" }, { "$ref": "Place.schema.json" } ], "description": "The geographic area where the service is provided." }, "slogan": { "description": "A slogan or motto associated with the item.", "items": { "type": "string" }, "type": "array" }, "sponsor": { "description": "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.", "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" }, "subOrganization": { "description": "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.", "items": { "$ref": "Organization.schema.json" }, "type": "array" }, "taxID": { "description": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.", "type": "string" }, "telephone": { "description": "The telephone number.", "type": "string" }, "vatID": { "description": "The Value-added Tax ID of the organization or person.", "type": "string" } }, "required": [ "@type" ], "title": "Organization", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Season.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Season", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:CreativeWork", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A media season e.g. tv, radio, video game etc.", "title": "Season", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
836707371bd5157a43e93dd1653717a7f932db13
2020-05-11T23:21:31
schemas/ExerciseAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ExerciseAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "PlayAction.schema.json", "description": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\n\nRelated actions:\n\n\nListenAction: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\nWatchAction: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.\n\n" } ], "description": "The act of participating in exertive activity for the purposes of improving health and fitness.", "format": "http://schema.org/ExerciseAction", "properties": { "course": { "description": "A sub property of location. The course where this action was taken.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "distance": { "description": "The distance travelled, e.g. exercising or travelling.", "items": { "format": "https://schema.org/Distance", "type": "string" }, "type": "array" }, "exerciseCourse": { "description": "A sub property of location. The course where this action was taken.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "fromLocation": { "description": "A sub property of location. The original location of the object or the agent before the action.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "opponent": { "description": "A sub property of participant. The opponent on this action.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "sportsActivityLocation": { "description": "A sub property of location. The sports activity location where this action occurred.", "items": { "$ref": "SportsActivityLocation.schema.json" }, "type": "array" }, "sportsEvent": { "description": "A sub property of location. The sports event where this action occurred.", "items": { "$ref": "SportsEvent.schema.json" }, "type": "array" }, "sportsTeam": { "description": "A sub property of participant. The sports team that participated on this action.", "items": { "$ref": "SportsTeam.schema.json" }, "type": "array" }, "toLocation": { "description": "A sub property of location. The final location of the object or the agent after the action.", "items": { "$ref": "Place.schema.json" }, "type": "array" } }, "title": "ExerciseAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/MusicAlbum.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MusicAlbum", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "MusicPlaylist.schema.json", "description": "A collection of music tracks in playlist form." } ], "description": "A collection of music tracks.", "format": "http://schema.org/MusicAlbum", "properties": { "albumProductionType": { "description": "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.", "oneOf": [ { "$ref": "MusicAlbumProductionType.schema.json" }, { "items": { "$ref": "MusicAlbumProductionType.schema.json" }, "type": "array" } ] }, "albumRelease": { "description": "A release of this album.", "oneOf": [ { "$ref": "MusicRelease.schema.json" }, { "items": { "$ref": "MusicRelease.schema.json" }, "type": "array" } ] }, "albumReleaseType": { "$ref": "MusicAlbumReleaseType.schema.json", "description": "The kind of release which this album is: single, EP or album." }, "byArtist": { "anyOf": [ { "$ref": "MusicGroup.schema.json" }, { "$ref": "Person.schema.json" } ], "description": "The artist that performed this album or recording." } }, "title": "MusicAlbum", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/MiddleSchool.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:MiddleSchool", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:EducationalOrganization", "description": "An educational organization." } ], "description": "A middle school (typically for children aged around 11-14, although this varies somewhat).", "title": "MiddleSchool", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/LeaveAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/LeaveAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/InteractAction", "description": "The act of interacting with another person or organization." } ], "description": "An agent leaves an event / group with participants/friends at a location.\n\nRelated actions:\n\n\nJoinAction: The antonym of LeaveAction.\nUnRegisterAction: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.\n\n", "format": "http://schema.org/LeaveAction", "properties": { "event": { "description": "Upcoming or past event associated with this place, organization, or action.", "oneOf": [ { "$ref": "http://schema.org/Event" }, { "items": { "$ref": "http://schema.org/Event" }, "type": "array" } ] } }, "title": "LeaveAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
d93f16a26bf98d23eb806d03ccce08d7cf15b99a
2020-05-20T22:06:03
schemas/Role.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Role", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n\nSee also blog post.", "format": "http://schema.org/Role", "properties": { "endDate": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The end date and time of the item (in ISO 8601 date format)." }, "namedPosition": { "description": "A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, "type": "array" }, "roleName": { "description": "A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, "type": "array" }, "startDate": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The start date and time of the item (in ISO 8601 date format)." } }, "title": "Role", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/ActivateAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ActivateAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ControlAction.schema.json", "description": "An agent controls a device or application." } ], "description": "The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight).", "format": "http://schema.org/ActivateAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ActivateAction" } }, "required": [ "@type" ], "title": "ActivateAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/TVSeries.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TVSeries", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CreativeWork", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." }, { "$ref": "http://schema.org/CreativeWorkSeries", "description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike ItemList which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\n\nSpecific subtypes are available for describing TVSeries, RadioSeries, MovieSeries, BookSeries, Periodical and VideoGameSeries. In each case, the hasPart / isPartOf properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\n\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate." } ], "description": "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.", "properties": { "actor": { "description": "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.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "actors": { "description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "containsSeason": { "description": "A season that is part of the media series.", "oneOf": [ { "$ref": "http://schema.org/CreativeWorkSeason" }, { "items": { "$ref": "http://schema.org/CreativeWorkSeason" }, "type": "array" } ] }, "countryOfOrigin": { "$ref": "http://schema.org/Country", "description": "The country of the principal offices of the production company or individual responsible for the movie or program." }, "director": { "$ref": "http://schema.org/Person", "description": "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." }, "directors": { "description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "episode": { "description": "An episode of a tv, radio or game media within a series or season.", "oneOf": [ { "$ref": "http://schema.org/Episode" }, { "items": { "$ref": "http://schema.org/Episode" }, "type": "array" } ] }, "episodes": { "description": "An episode of a TV/radio series or season.", "oneOf": [ { "$ref": "http://schema.org/Episode" }, { "items": { "$ref": "http://schema.org/Episode" }, "type": "array" } ] }, "musicBy": { "anyOf": [ { "$ref": "http://schema.org/MusicGroup" }, { "$ref": "http://schema.org/Person" } ], "description": "The composer of the soundtrack." }, "numberOfEpisodes": { "description": "The number of episodes in this season or series.", "type": "integer" }, "numberOfSeasons": { "description": "The number of seasons in this series.", "type": "integer" }, "productionCompany": { "$ref": "http://schema.org/Organization", "description": "The production company or studio responsible for the item e.g. series, video game, episode etc." }, "season": { "description": "A season in a media series.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWorkSeason" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWorkSeason" } ] }, "type": "array" } ] }, "seasons": { "description": "A season in a media series.", "oneOf": [ { "$ref": "http://schema.org/CreativeWorkSeason" }, { "items": { "$ref": "http://schema.org/CreativeWorkSeason" }, "type": "array" } ] }, "trailer": { "$ref": "http://schema.org/VideoObject", "description": "The trailer of a movie or tv/radio series, season, episode, etc." } }, "title": "TVSeries", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/AchieveAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:AchieveAction", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Action", "description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html)." } ], "description": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.", "title": "AchieveAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Photograph.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Photograph", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CreativeWork", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A photograph.", "title": "Photograph", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/AgreeAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AgreeAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/ReactAction", "description": "The act of responding instinctively and emotionally to an object, expressing a sentiment." } ], "description": "The act of expressing a consistency of opinion with the object. An agent agrees to/about an object (a proposition, topic or theme) with participants.", "format": "http://schema.org/AgreeAction", "title": "AgreeAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/DeleteAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:DeleteAction", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:UpdateAction", "description": "The act of managing by changing/editing the state of the object." } ], "description": "The act of editing a recipient by removing one of its objects.", "title": "DeleteAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
bff980152b9479eca4d09d407e6df5567a3ebe2e
2020-05-13T21:54:35
schemas/Place.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Place", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Thing.schema.json", "description": "The most generic type of item." } ], "description": "Entities that have a somewhat fixed, physical extension.", "format": "http://schema.org/Place", "properties": { "additionalProperty": { "description": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.", "items": { "$ref": "PropertyValue.schema.json" }, "type": "array" }, "address": { "anyOf": [ { "type": "string" }, { "$ref": "PostalAddress.schema.json" } ], "description": "Physical address of the item." }, "aggregateRating": { "$ref": "AggregateRating.schema.json", "description": "The overall rating, based on a collection of reviews or ratings, of the item." }, "amenityFeature": { "description": "An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.", "items": { "$ref": "LocationFeatureSpecification.schema.json" }, "type": "array" }, "branchCode": { "description": "A short textual code (also called \"store code\") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\n\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code \"3047\" is a branchCode for a particular branch.", "items": { "type": "string" }, "type": "array" }, "containedIn": { "$ref": "Place.schema.json", "description": "The basic containment relation between a place and one that contains it." }, "containedInPlace": { "$ref": "Place.schema.json", "description": "The basic containment relation between a place and one that contains it." }, "containsPlace": { "$ref": "Place.schema.json", "description": "The basic containment relation between a place and another that it contains." }, "event": { "description": "Upcoming or past event associated with this place, organization, or action.", "items": { "$ref": "Event.schema.json" }, "type": "array" }, "events": { "description": "Upcoming or past events associated with this place or organization.", "items": { "$ref": "Event.schema.json" }, "type": "array" }, "faxNumber": { "description": "The fax number.", "type": "string" }, "geo": { "anyOf": [ { "$ref": "GeoShape.schema.json" }, { "$ref": "GeoCoordinates.schema.json" } ], "description": "The geo coordinates of the place." }, "geoContains": { "description": "Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. \"a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a\". As defined in DE-9IM.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "geoCoveredBy": { "description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in DE-9IM.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "geoCovers": { "description": "Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. \"Every point of b is a point of (the interior or boundary of) a\". As defined in DE-9IM.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "geoCrosses": { "description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: \"a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them\". As defined in DE-9IM.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "geoDisjoint": { "description": "Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: they have no point in common. They form a set of disconnected geometries.\" (a symmetric relationship, as defined in DE-9IM)", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "geoEquals": { "description": "Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in DE-9IM. \"Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other\" (a symmetric relationship)", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "geoIntersects": { "description": "Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in DE-9IM.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "geoOverlaps": { "description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in DE-9IM.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "geoTouches": { "description": "Represents spatial relations in which two geometries (or the places they represent) touch: they have at least one boundary point in common, but no interior points.\" (a symmetric relationship, as defined in DE-9IM )", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "geoWithin": { "description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in DE-9IM.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "globalLocationNumber": { "description": "The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.", "type": "string" }, "hasMap": { "description": "A URL to a map of the place.", "items": { "anyOf": [ { "$ref": "Map.schema.json" }, { "format": "uri", "type": "string" } ] }, "type": "array" }, "isAccessibleForFree": { "description": "A flag to signal that the item, event, or place is accessible for free.", "type": "boolean" }, "isicV4": { "description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.", "type": "string" }, "latitude": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "The latitude of a location. For example 37.42242 (WGS 84)." }, "logo": { "description": "An associated logo.", "items": { "anyOf": [ { "$ref": "ImageObject.schema.json" }, { "format": "uri", "type": "string" } ] }, "type": "array" }, "longitude": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "The longitude of a location. For example -122.08585 (WGS 84)." }, "map": { "description": "A URL to a map of the place.", "items": { "format": "uri", "type": "string" }, "type": "array" }, "maps": { "description": "A URL to a map of the place.", "items": { "format": "uri", "type": "string" }, "type": "array" }, "maximumAttendeeCapacity": { "description": "The total number of individuals that may attend an event or venue.", "type": "integer" }, "openingHoursSpecification": { "$ref": "OpeningHoursSpecification.schema.json", "description": "The opening hours of a certain place." }, "photo": { "description": "A photograph of this place.", "items": { "anyOf": [ { "$ref": "ImageObject.schema.json" }, { "$ref": "Photograph.schema.json" } ] }, "type": "array" }, "photos": { "description": "Photographs of this place.", "items": { "anyOf": [ { "$ref": "ImageObject.schema.json" }, { "$ref": "Photograph.schema.json" } ] }, "type": "array" }, "publicAccess": { "description": "A flag to signal that the Place is open to public visitors. If this property is omitted there is no assumed default boolean value", "type": "boolean" }, "review": { "description": "A review of the item.", "items": { "$ref": "Review.schema.json" }, "type": "array" }, "reviews": { "description": "Review of the item.", "items": { "$ref": "Review.schema.json" }, "type": "array" }, "slogan": { "description": "A slogan or motto associated with the item.", "items": { "type": "string" }, "type": "array" }, "smokingAllowed": { "description": "Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.", "type": "boolean" }, "specialOpeningHoursSpecification": { "$ref": "OpeningHoursSpecification.schema.json", "description": "The special opening hours of a certain place.\n\nUse this to explicitly override general opening hours brought in scope by openingHoursSpecification or openingHours." }, "telephone": { "description": "The telephone number.", "type": "string" } }, "title": "Place", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Offer.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Offer", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "An offer to transfer some rights to an item or to provide a service \u2014 for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\n\nNote: As the businessFunction property, which identifies the form of offer (e.g. sell, lease, repair, dispose), defaults to http://purl.org/goodrelations/v1#Sell; an Offer without a defined businessFunction value can be assumed to be an offer to sell.\n\nFor GTIN-related fields, see Check Digit calculator and validation guide from GS1.", "format": "http://schema.org/Offer", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Offer" }, "acceptedPaymentMethod": { "anyOf": [ { "$ref": "LoanOrCredit.schema.json" }, { "$ref": "PaymentMethod.schema.json" } ], "description": "The payment method(s) accepted by seller for this offer." }, "addOn": { "description": "An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).", "items": { "$ref": "Offer.schema.json" }, "type": "array" }, "advanceBookingRequirement": { "$ref": "QuantitativeValue.schema.json", "description": "The amount of time that is required between accepting the offer and the actual usage of the resource or service." }, "aggregateRating": { "$ref": "AggregateRating.schema.json", "description": "The overall rating, based on a collection of reviews or ratings, of the item." }, "areaServed": { "anyOf": [ { "type": "string" }, { "$ref": "AdministrativeArea.schema.json" }, { "$ref": "GeoShape.schema.json" }, { "$ref": "Place.schema.json" } ], "description": "The geographic area where a service or offered item is provided." }, "availability": { "$ref": "ItemAvailability.schema.json", "description": "The availability of this item\u2014for example In stock, Out of stock, Pre-order, etc." }, "availabilityEnds": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" }, { "format": "time", "type": "string" } ], "description": "The end of the availability of the product or service included in the offer." }, "availabilityStarts": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" }, { "format": "time", "type": "string" } ], "description": "The beginning of the availability of the product or service included in the offer." }, "availableAtOrFrom": { "$ref": "Place.schema.json", "description": "The place(s) from which the offer can be obtained (e.g. store locations)." }, "availableDeliveryMethod": { "$ref": "DeliveryMethod.schema.json", "description": "The delivery method(s) available for this offer." }, "businessFunction": { "$ref": "BusinessFunction.schema.json", "description": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell." }, "category": { "description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "Thing.schema.json" } ] }, "type": "array" }, "deliveryLeadTime": { "$ref": "QuantitativeValue.schema.json", "description": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup." }, "eligibleCustomerType": { "$ref": "BusinessEntityType.schema.json", "description": "The type(s) of customers for which the given offer is valid." }, "eligibleDuration": { "$ref": "QuantitativeValue.schema.json", "description": "The duration for which the given offer is valid." }, "eligibleQuantity": { "$ref": "QuantitativeValue.schema.json", "description": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity." }, "eligibleRegion": { "anyOf": [ { "type": "string" }, { "$ref": "GeoShape.schema.json" }, { "$ref": "Place.schema.json" } ], "description": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\n\nSee also ineligibleRegion." }, "eligibleTransactionVolume": { "$ref": "PriceSpecification.schema.json", "description": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount." }, "gtin12": { "description": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See GS1 GTIN Summary for more details.", "type": "string" }, "gtin13": { "description": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See GS1 GTIN Summary for more details.", "type": "string" }, "gtin14": { "description": "The GTIN-14 code of the product, or the product to which the offer refers. See GS1 GTIN Summary for more details.", "type": "string" }, "gtin8": { "description": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.", "type": "string" }, "includesObject": { "description": "This links to a node or nodes indicating the exact quantity of the products included in the offer.", "items": { "$ref": "TypeAndQuantityNode.schema.json" }, "type": "array" }, "inventoryLevel": { "$ref": "QuantitativeValue.schema.json", "description": "The current approximate inventory level for the item or items." }, "itemCondition": { "description": "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.", "items": { "$ref": "OfferItemCondition.schema.json" }, "type": "array" }, "itemOffered": { "anyOf": [ { "$ref": "AggregateOffer.schema.json" }, { "$ref": "CreativeWork.schema.json" }, { "$ref": "Event.schema.json" }, { "$ref": "MenuItem.schema.json" }, { "$ref": "Product.schema.json" }, { "$ref": "Service.schema.json" }, { "$ref": "Trip.schema.json" } ], "description": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using businessFunction, e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer." }, "mpn": { "description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.", "type": "string" }, "offeredBy": { "description": "A pointer to the organization or person making the offer.", "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" }, "price": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\n\nUsage guidelines:\n\n\nUse the priceCurrency property (with standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\") instead of including ambiguous symbols such as '$' in the value.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\nNote that both RDFa and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n\n" }, "priceCurrency": { "description": "The currency of the price, or a price component when attached to PriceSpecification and its subtypes.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".", "type": "string" }, "priceSpecification": { "description": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.", "items": { "$ref": "PriceSpecification.schema.json" }, "type": "array" }, "priceValidUntil": { "description": "The date after which the price is no longer available.", "format": "date", "type": "string" }, "review": { "description": "A review of the item.", "items": { "$ref": "Review.schema.json" }, "type": "array" }, "reviews": { "description": "Review of the item.", "items": { "$ref": "Review.schema.json" }, "type": "array" }, "seller": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ], "description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider." }, "serialNumber": { "description": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.", "type": "string" }, "sku": { "description": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.", "type": "string" }, "validFrom": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date when the item becomes valid." }, "validThrough": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours." }, "warranty": { "$ref": "WarrantyPromise.schema.json", "description": "The warranty promise(s) included in the offer." } }, "required": [ "@type" ], "title": "Offer", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c
2020-05-13T21:31:46
schemas/OrderItem.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/OrderItem", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "An order item is a line of an order. It includes the quantity and shipping details of a bought offer.", "format": "http://schema.org/OrderItem", "properties": { "orderDelivery": { "$ref": "ParcelDelivery.schema.json", "description": "The delivery of the parcel related to this order or order item." }, "orderItemNumber": { "description": "The identifier of the order item.", "type": "string" }, "orderItemStatus": { "$ref": "OrderStatus.schema.json", "description": "The current status of the order item." }, "orderQuantity": { "description": "The number of the item ordered. If the property is not set, assume the quantity is one.", "type": "number" }, "orderedItem": { "description": "The item ordered.", "items": { "anyOf": [ { "$ref": "OrderItem.schema.json" }, { "$ref": "Service.schema.json" }, { "$ref": "Product.schema.json" } ] }, "type": "array" } }, "title": "OrderItem", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/PrependAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PrependAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/InsertAction", "description": "The act of adding at a specific location in an ordered collection." } ], "description": "The act of inserting at the beginning if an ordered collection.", "title": "PrependAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/FireStation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/FireStation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CivicStructure", "description": "A public structure, such as a town hall or concert hall." }, { "$ref": "http://schema.org/EmergencyService", "description": "An emergency service, such as a fire station or ER." } ], "description": "A fire station. With firemen.", "format": "http://schema.org/FireStation", "title": "FireStation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/AssessAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AssessAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Action", "description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document." } ], "description": "The act of forming one's opinion, reaction or sentiment.", "format": "http://schema.org/AssessAction", "title": "AssessAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/AmusementPark.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AmusementPark", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "EntertainmentBusiness.schema.json", "description": "A business providing entertainment." } ], "description": "An amusement park.", "format": "http://schema.org/AmusementPark", "title": "AmusementPark", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/WantAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/WantAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ReactAction.schema.json", "description": "The act of responding instinctively and emotionally to an object, expressing a sentiment." } ], "description": "The act of expressing a desire about the object. An agent wants an object.", "format": "http://schema.org/WantAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "WantAction" } }, "required": [ "@type" ], "title": "WantAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/DislikeAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DislikeAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ReactAction.schema.json", "description": "The act of responding instinctively and emotionally to an object, expressing a sentiment." } ], "description": "The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.", "format": "http://schema.org/DislikeAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "DislikeAction" } }, "required": [ "@type" ], "title": "DislikeAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/DepartmentStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DepartmentStore", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Store.schema.json", "description": "A retail good store." } ], "description": "A department store.", "format": "http://schema.org/DepartmentStore", "title": "DepartmentStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Hotel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Hotel", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "LodgingBusiness.schema.json", "description": "A lodging business, such as a motel, hotel, or inn." } ], "description": "A hotel is an establishment that provides lodging paid on a short-term basis (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Hotel).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.", "format": "http://schema.org/Hotel", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Hotel" } }, "required": [ "@type" ], "title": "Hotel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/LodgingBusiness.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/LodgingBusiness", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/LocalBusiness", "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc." } ], "description": "A lodging business, such as a motel, hotel, or inn.", "properties": { "amenityFeature": { "description": "An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.", "oneOf": [ { "$ref": "http://schema.org/LocationFeatureSpecification" }, { "items": { "$ref": "http://schema.org/LocationFeatureSpecification" }, "type": "array" } ] }, "audience": { "$ref": "http://schema.org/Audience", "description": "An intended audience, i.e. a group for whom something was created." }, "availableLanguage": { "description": "A language someone may use with or at the item, service or place. Please use one of the language codes from the IETF BCP 47 standard. See also inLanguage", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Language" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Language" } ] }, "type": "array" } ] }, "checkinTime": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "time", "type": "string" } ], "description": "The earliest someone may check into a lodging establishment." }, "checkoutTime": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "time", "type": "string" } ], "description": "The latest someone may check out of a lodging establishment." }, "numberOfRooms": { "anyOf": [ { "type": "number" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue." }, "petsAllowed": { "anyOf": [ { "type": "boolean" }, { "type": "string" } ], "description": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value." }, "starRating": { "description": "An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).", "oneOf": [ { "$ref": "http://schema.org/Rating" }, { "items": { "$ref": "http://schema.org/Rating" }, "type": "array" } ] } }, "title": "LodgingBusiness", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/EatAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/EatAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ConsumeAction.schema.json", "description": "The act of ingesting information/resources/food." } ], "description": "The act of swallowing solid objects.", "format": "http://schema.org/EatAction", "title": "EatAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/OceanBodyOfWater.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/OceanBodyOfWater", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "BodyOfWater.schema.json", "description": "A body of water, such as a sea, ocean, or lake." } ], "description": "An ocean (for example, the Pacific).", "format": "http://schema.org/OceanBodyOfWater", "title": "OceanBodyOfWater", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/ParkingFacility.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ParkingFacility", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CivicStructure.schema.json", "description": "A public structure, such as a town hall or concert hall." } ], "description": "A parking lot or other parking facility.", "format": "http://schema.org/ParkingFacility", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ParkingFacility" } }, "required": [ "@type" ], "title": "ParkingFacility", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Electrician.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Electrician", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "HomeAndConstructionBusiness.schema.json", "description": "A construction business.\n\nA HomeAndConstructionBusiness is a LocalBusiness that provides services around homes and buildings.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s)." } ], "description": "An electrician.", "format": "http://schema.org/Electrician", "title": "Electrician", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/MapCategoryType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MapCategoryType", "$schema": "http://json-schema.org/draft-07/schema#", "description": "An enumeration of several kinds of Map.", "format": "http://schema.org/MapCategoryType", "oneOf": [ { "const": "ParkingMap", "description": "A parking map." }, { "const": "SeatingMap", "description": "A seating map." }, { "const": "TransitMap", "description": "A transit map." }, { "const": "VenueMap", "description": "A venue map (e.g. for malls, auditoriums, museums, etc.)." } ], "title": "MapCategoryType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/HowToTip.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowToTip", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CreativeWork", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." }, { "$ref": "http://schema.org/ListItem", "description": "An list item, e.g. a step in a checklist or how-to description." } ], "description": "An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection).", "title": "HowToTip", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
d93f16a26bf98d23eb806d03ccce08d7cf15b99a
2020-05-20T22:06:03
schemas/LocalBusiness.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/LocalBusiness", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Organization.schema.json", "description": "An organization such as a school, NGO, corporation, club, etc." }, { "$ref": "Place.schema.json", "description": "Entities that have a somewhat fixed, physical extension." } ], "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.", "format": "http://schema.org/LocalBusiness", "properties": { "branchOf": { "$ref": "Organization.schema.json", "description": "The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)branch." }, "currenciesAccepted": { "description": "The currency accepted.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".", "type": "string" }, "openingHours": { "description": "The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.\n\n\nDays are specified using the following two-letter combinations: Mo, Tu, We, Th, Fr, Sa, Su.\nTimes are specified using 24:00 time. For example, 3pm is specified as 15:00. \nHere is an example: <time itemprop=\"openingHours\" datetime=\"Tu,Th 16:00-20:00\">Tuesdays and Thursdays 4-8pm</time>.\nIf a business is open 7 days a week, then it can be specified as <time itemprop=\"openingHours\" datetime=\"Mo-Su\">Monday through Sunday, all day</time>.\n\n", "type": "string" }, "paymentAccepted": { "description": "Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", "items": { "type": "string" }, "type": "array" }, "priceRange": { "description": "The price range of the business, for example $$$.", "type": "string" } }, "title": "LocalBusiness", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ItemAvailability.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ItemAvailability", "$schema": "http://json-schema.org/draft-07/schema#", "description": "A list of possible product availability options.", "oneOf": [ { "const": "Discontinued", "description": "Indicates that the item has been discontinued." }, { "const": "InStock", "description": "Indicates that the item is in stock." }, { "const": "InStoreOnly", "description": "Indicates that the item is available only at physical locations." }, { "const": "LimitedAvailability", "description": "Indicates that the item has limited availability." }, { "const": "OnlineOnly", "description": "Indicates that the item is available only online." }, { "const": "OutOfStock", "description": "Indicates that the item is out of stock." }, { "const": "PreOrder", "description": "Indicates that the item is available for pre-order." }, { "const": "PreSale", "description": "Indicates that the item is available for ordering and delivery before general availability." }, { "const": "SoldOut", "description": "Indicates that the item has sold out." } ], "title": "ItemAvailability", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Store.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Store", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:LocalBusiness", "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc." } ], "description": "A retail good store.", "title": "Store", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/HowToSupply.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowToSupply", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "HowToItem.schema.json", "description": "An item used as either a tool or supply when performing the instructions for how to to achieve a result." } ], "description": "A supply consumed when performing the instructions for how to achieve a result.", "format": "http://schema.org/HowToSupply", "properties": { "estimatedCost": { "anyOf": [ { "type": "string" }, { "$ref": "MonetaryAmount.schema.json" } ], "description": "The estimated cost of the supply or supplies consumed when performing instructions." } }, "title": "HowToSupply", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/DataFeedItem.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DataFeedItem", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Intangible", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "A single item within a larger data feed.", "properties": { "dateCreated": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date on which the CreativeWork was created or the item was added to a DataFeed." }, "dateDeleted": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The datetime the item was removed from the DataFeed." }, "dateModified": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed." }, "item": { "description": "An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')\u2019.", "oneOf": [ { "$ref": "http://schema.org/Thing" }, { "items": { "$ref": "http://schema.org/Thing" }, "type": "array" } ] } }, "title": "DataFeedItem", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/PublicationIssue.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PublicationIssue", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\n\nSee also blog post.", "format": "http://schema.org/PublicationIssue", "properties": { "issueNumber": { "description": "Identifies the issue of publication; for example, \"iii\" or \"2\".", "oneOf": [ { "anyOf": [ { "type": "integer" }, { "type": "string" } ] }, { "items": { "anyOf": [ { "type": "integer" }, { "type": "string" } ] }, "type": "array" } ] }, "pageEnd": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The page on which the work ends; for example \"138\" or \"xvi\"." }, "pageStart": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The page on which the work starts; for example \"135\" or \"xiii\"." }, "pagination": { "description": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "title": "PublicationIssue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/EndorseAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/EndorseAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ReactAction.schema.json", "description": "The act of responding instinctively and emotionally to an object, expressing a sentiment." } ], "description": "An agent approves/certifies/likes/supports/sanction an object.", "format": "http://schema.org/EndorseAction", "properties": { "endorsee": { "description": "A sub property of participant. The person/organization being supported.", "items": { "oneOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" } }, "title": "EndorseAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ParcelDelivery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ParcelDelivery", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Intangible", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "The delivery of a parcel either via the postal service or a commercial service.", "properties": { "carrier": { "$ref": "http://schema.org/Organization", "description": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights." }, "deliveryAddress": { "$ref": "http://schema.org/PostalAddress", "description": "Destination address." }, "deliveryStatus": { "description": "New entry added as the package passes through each leg of its journey (from shipment to final delivery).", "oneOf": [ { "$ref": "http://schema.org/DeliveryEvent" }, { "items": { "$ref": "http://schema.org/DeliveryEvent" }, "type": "array" } ] }, "expectedArrivalFrom": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The earliest date the package may arrive." }, "expectedArrivalUntil": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The latest date the package may arrive." }, "hasDeliveryMethod": { "$ref": "http://schema.org/DeliveryMethod", "description": "Method used for delivery or shipping." }, "itemShipped": { "description": "Item(s) being shipped.", "oneOf": [ { "$ref": "http://schema.org/Product" }, { "items": { "$ref": "http://schema.org/Product" }, "type": "array" } ] }, "originAddress": { "$ref": "http://schema.org/PostalAddress", "description": "Shipper's address." }, "partOfOrder": { "$ref": "http://schema.org/Order", "description": "The overall order the items in this delivery were included in." }, "provider": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller." }, "trackingNumber": { "description": "Shipper tracking number.", "type": "string" }, "trackingUrl": { "description": "Tracking url for the parcel delivery.", "format": "uri", "type": "string" } }, "title": "ParcelDelivery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/GovernmentOffice.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GovernmentOffice", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "LocalBusiness.schema.json", "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc." } ], "description": "A government office\u2014for example, an IRS or DMV office.", "format": "http://schema.org/GovernmentOffice", "title": "GovernmentOffice", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Hostel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Hostel", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "LodgingBusiness.schema.json", "description": "A lodging business, such as a motel, hotel, or inn." } ], "description": "A hostel - cheap accommodation, often in shared dormitories.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.", "format": "http://schema.org/Hostel", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Hostel" } }, "required": [ "@type" ], "title": "Hostel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/AllocateAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AllocateAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/OrganizeAction", "description": "The act of manipulating/administering/supervising/controlling one or more objects." } ], "description": "The act of organizing tasks/objects/events by associating resources to it.", "format": "http://schema.org/AllocateAction", "title": "AllocateAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
dcbb428317ce07ab8dcff50247c907f15443fb2f
2020-05-22T20:27:54
schemas/Airline.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Airline", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Organization.schema.json", "description": "An organization such as a school, NGO, corporation, club, etc." } ], "description": "An organization that provides flights for passengers.", "format": "http://schema.org/Airline", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Airline" }, "boardingPolicy": { "$ref": "BoardingPolicyType.schema.json", "description": "The type of boarding policy used by the airline (e.g. zone-based or group-based)." }, "iataCode": { "description": "IATA identifier for an airline or airport.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "required": [ "@type" ], "title": "Airline", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/PublicationIssue.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:PublicationIssue", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:CreativeWork", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).", "properties": { "issueNumber": { "description": "Identifies the issue of publication; for example, \"iii\" or \"2\".", "oneOf": [ { "anyOf": [ { "type": "integer" }, { "type": "string" } ] }, { "items": { "anyOf": [ { "type": "integer" }, { "type": "string" } ] }, "type": "array" } ] }, "pageEnd": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The page on which the work ends; for example \"138\" or \"xvi\"." }, "pageStart": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The page on which the work starts; for example \"135\" or \"xiii\"." }, "pagination": { "description": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "title": "PublicationIssue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/FoodEstablishment.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/FoodEstablishment", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "LocalBusiness.schema.json", "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc." } ], "description": "A food-related business.", "format": "http://schema.org/FoodEstablishment", "properties": { "acceptsReservations": { "anyOf": [ { "type": "string" }, { "type": "boolean" }, { "format": "uri", "type": "string" } ], "description": "Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings Yes or No." }, "hasMenu": { "description": "Either the actual menu as a structured representation, as text, or a URL of the menu.", "items": { "oneOf": [ { "type": "string" }, { "$ref": "Menu.schema.json" }, { "format": "uri", "type": "string" } ] }, "type": "array" }, "menu": { "anyOf": [ { "type": "string" }, { "$ref": "Menu.schema.json" }, { "format": "uri", "type": "string" } ], "description": "Either the actual menu as a structured representation, as text, or a URL of the menu." }, "servesCuisine": { "description": "The cuisine of the restaurant.", "type": "string" }, "starRating": { "description": "An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).", "items": { "$ref": "Rating.schema.json" }, "type": "array" } }, "title": "FoodEstablishment", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/LoanOrCredit.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/LoanOrCredit", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "FinancialProduct.schema.json", "description": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry." } ], "description": "A financial product for the loaning of an amount of money under agreed terms and charges.", "format": "http://schema.org/LoanOrCredit", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "LoanOrCredit" }, "amount": { "anyOf": [ { "type": "number" }, { "$ref": "MonetaryAmount.schema.json" } ], "description": "The amount of money." }, "currency": { "description": "The currency in which the monetary amount is expressed.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".", "type": "string" }, "loanTerm": { "$ref": "QuantitativeValue.schema.json", "description": "The duration of the loan or credit agreement." }, "requiredCollateral": { "description": "Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.)", "items": { "anyOf": [ { "type": "string" }, { "$ref": "Thing.schema.json" } ] }, "type": "array" } }, "required": [ "@type" ], "title": "LoanOrCredit", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ComputerStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ComputerStore", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Store", "description": "A retail good store." } ], "description": "A computer store.", "title": "ComputerStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/Motel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Motel", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "LodgingBusiness.schema.json", "description": "A lodging business, such as a motel, hotel, or inn." } ], "description": "A motel.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.", "format": "http://schema.org/Motel", "title": "Motel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/State.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/State", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/AdministrativeArea", "description": "A geographical region, typically under the jurisdiction of a particular government." } ], "description": "A state or province of a country.", "title": "State", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/BusinessEntityType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BusinessEntityType", "$schema": "http://json-schema.org/draft-07/schema#", "description": "A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\n\nCommonly used values:\n\n\nhttp://purl.org/goodrelations/v1#Business\nhttp://purl.org/goodrelations/v1#Enduser\nhttp://purl.org/goodrelations/v1#PublicInstitution\nhttp://purl.org/goodrelations/v1#Reseller\n\n", "format": "http://schema.org/BusinessEntityType", "title": "BusinessEntityType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/WPHeader.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/WPHeader", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "WebPageElement.schema.json", "description": "A web page element, like a table or an image." } ], "description": "The header section of the page.", "format": "http://schema.org/WPHeader", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "WPHeader" } }, "required": [ "@type" ], "title": "WPHeader", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Guide.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Guide", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:CreativeWork", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "[[Guide]] is a page or article that recommend specific products or services, or aspects of a thing for a user to consider. A [[Guide]] may represent a Buying Guide and detail aspects of products or services for a user to consider. A [[Guide]] may represent a Product Guide and recommend specific products or services. A [[Guide]] may represent a Ranked List and recommend specific products or services with ranking.", "properties": { "reviewAspect": { "description": "This Review or Rating is relevant to this part or facet of the itemReviewed.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "title": "Guide", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Vehicle.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Vehicle", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Product.schema.json", "description": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online." } ], "description": "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.", "format": "http://schema.org/Vehicle", "properties": { "cargoVolume": { "$ref": "QuantitativeValue.schema.json", "description": "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.\n\nTypical unit code(s): LTR for liters, FTQ for cubic foot/feet\n\nNote: You can use minValue and maxValue to indicate ranges." }, "dateVehicleFirstRegistered": { "description": "The date of the first registration of the vehicle with the respective public authorities.", "format": "http://schema.org/Date" }, "driveWheelConfiguration": { "$ref": "DriveWheelConfigurationValue.schema.json", "description": "The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain." }, "fuelConsumption": { "$ref": "QuantitativeValue.schema.json", "description": "The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).\n\n\nNote 1: There are unfortunately no standard unit codes for liters per 100 km. Use unitText to indicate the unit of measurement, e.g. L/100 km.\nNote 2: There are two ways of indicating the fuel consumption, fuelConsumption (e.g. 8 liters per 100 km) and fuelEfficiency (e.g. 30 miles per gallon). They are reciprocal.\nNote 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use valueReference to link the value for the fuel consumption to another value.\n\n" }, "fuelEfficiency": { "$ref": "QuantitativeValue.schema.json", "description": "The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).\n\n\nNote 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use unitText to indicate the unit of measurement, e.g. mpg or km/L.\nNote 2: There are two ways of indicating the fuel consumption, fuelConsumption (e.g. 8 liters per 100 km) and fuelEfficiency (e.g. 30 miles per gallon). They are reciprocal.\nNote 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use valueReference to link the value for the fuel economy to another value.\n\n" }, "fuelType": { "anyOf": [ { "$ref": "QualitativeValue.schema.json" }, { "format": "uri", "type": "string" } ], "description": "The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle." }, "knownVehicleDamages": { "description": "A textual description of known damages, both repaired and unrepaired.", "format": "http://schema.org/Text" }, "mileageFromOdometer": { "$ref": "QuantitativeValue.schema.json", "description": "The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\n\nTypical unit code(s): KMT for kilometers, SMI for statute miles" }, "numberOfAirbags": { "description": "The number or type of airbags in the vehicle.", "format": "http://schema.org/Text" }, "numberOfAxles": { "$ref": "QuantitativeValue.schema.json", "description": "The number of axles.\n\nTypical unit code(s): C62" }, "numberOfDoors": { "$ref": "QuantitativeValue.schema.json", "description": "The number of doors.\n\nTypical unit code(s): C62" }, "numberOfForwardGears": { "$ref": "QuantitativeValue.schema.json", "description": "The total number of forward gears available for the transmission system of the vehicle.\n\nTypical unit code(s): C62" }, "numberOfPreviousOwners": { "$ref": "QuantitativeValue.schema.json", "description": "The number of owners of the vehicle, including the current one.\n\nTypical unit code(s): C62" }, "productionDate": { "description": "The date of production of the item, e.g. vehicle.", "format": "http://schema.org/Date" }, "purchaseDate": { "description": "The date the item e.g. vehicle was purchased by the current owner.", "format": "http://schema.org/Date" }, "steeringPosition": { "$ref": "SteeringPositionValue.schema.json", "description": "The position of the steering wheel or similar device (mostly for cars)." }, "vehicleConfiguration": { "description": "A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.", "format": "http://schema.org/Text" }, "vehicleEngine": { "description": "Information about the engine or engines of the vehicle.", "items": { "$ref": "EngineSpecification.schema.json" }, "type": "array" }, "vehicleIdentificationNumber": { "description": "The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.", "format": "http://schema.org/Text" }, "vehicleInteriorColor": { "description": "The color or color combination of the interior of the vehicle.", "format": "http://schema.org/Text" }, "vehicleInteriorType": { "description": "The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.", "format": "http://schema.org/Text" }, "vehicleModelDate": { "description": "The release date of a vehicle model (often used to differentiate versions of the same make and model).", "format": "http://schema.org/Date" }, "vehicleSeatingCapacity": { "$ref": "QuantitativeValue.schema.json", "description": "The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.\n\nTypical unit code(s): C62 for persons." }, "vehicleTransmission": { "anyOf": [ { "$ref": "QualitativeValue.schema.json" }, { "format": "uri", "type": "string" } ], "description": "The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component(s) (\"gearbox\" for cars)." } }, "title": "Vehicle", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/MedicalTrialDesign.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:MedicalTrialDesign", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:MedicalEnumeration", "description": "Enumerations related to health and the practice of medicine: A concept that is used to attribute a quality to another concept, as a qualifier, a collection of items or a listing of all of the elements of a set in medicine practice." } ], "description": "Design models for medical trials. Enumerated type.", "title": "MedicalTrialDesign", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/TelevisionStation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TelevisionStation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/LocalBusiness", "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc." } ], "description": "A television station.", "format": "http://schema.org/TelevisionStation", "title": "TelevisionStation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Pond.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Pond", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "BodyOfWater.schema.json", "description": "A body of water, such as a sea, ocean, or lake." } ], "description": "A pond.", "format": "http://schema.org/Pond", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Pond" } }, "required": [ "@type" ], "title": "Pond", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/Demand.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Demand", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.", "format": "http://schema.org/Demand", "properties": { "acceptedPaymentMethod": { "anyOf": [ { "$ref": "LoanOrCredit.schema.json" }, { "$ref": "PaymentMethod.schema.json" } ], "description": "The payment method(s) accepted by seller for this offer." }, "advanceBookingRequirement": { "$ref": "QuantitativeValue.schema.json", "description": "The amount of time that is required between accepting the offer and the actual usage of the resource or service." }, "areaServed": { "anyOf": [ { "$ref": "AdministrativeArea.schema.json" }, { "$ref": "Place.schema.json" }, { "$ref": "GeoShape.schema.json" }, { "type": "string" } ], "description": "The geographic area where a service or offered item is provided." }, "availability": { "$ref": "ItemAvailability.schema.json", "description": "The availability of this item\u2014for example In stock, Out of stock, Pre-order, etc." }, "availabilityEnds": { "anyOf": [ { "format": "time", "type": "string" }, { "format": "date-time", "type": "string" }, { "format": "date", "type": "string" } ], "description": "The end of the availability of the product or service included in the offer." }, "availabilityStarts": { "anyOf": [ { "format": "time", "type": "string" }, { "format": "date-time", "type": "string" }, { "format": "date", "type": "string" } ], "description": "The beginning of the availability of the product or service included in the offer." }, "availableAtOrFrom": { "$ref": "Place.schema.json", "description": "The place(s) from which the offer can be obtained (e.g. store locations)." }, "availableDeliveryMethod": { "$ref": "DeliveryMethod.schema.json", "description": "The delivery method(s) available for this offer." }, "businessFunction": { "$ref": "BusinessFunction.schema.json", "description": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell." }, "deliveryLeadTime": { "$ref": "QuantitativeValue.schema.json", "description": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup." }, "eligibleCustomerType": { "$ref": "BusinessEntityType.schema.json", "description": "The type(s) of customers for which the given offer is valid." }, "eligibleDuration": { "$ref": "QuantitativeValue.schema.json", "description": "The duration for which the given offer is valid." }, "eligibleQuantity": { "$ref": "QuantitativeValue.schema.json", "description": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity." }, "eligibleRegion": { "anyOf": [ { "$ref": "Place.schema.json" }, { "$ref": "GeoShape.schema.json" }, { "type": "string" } ], "description": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\n\nSee also ineligibleRegion." }, "eligibleTransactionVolume": { "$ref": "PriceSpecification.schema.json", "description": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount." }, "gtin12": { "description": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See GS1 GTIN Summary for more details.", "type": "string" }, "gtin13": { "description": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See GS1 GTIN Summary for more details.", "type": "string" }, "gtin14": { "description": "The GTIN-14 code of the product, or the product to which the offer refers. See GS1 GTIN Summary for more details.", "type": "string" }, "gtin8": { "description": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.", "type": "string" }, "includesObject": { "description": "This links to a node or nodes indicating the exact quantity of the products included in the offer.", "items": { "$ref": "TypeAndQuantityNode.schema.json" }, "type": "array" }, "inventoryLevel": { "$ref": "QuantitativeValue.schema.json", "description": "The current approximate inventory level for the item or items." }, "itemCondition": { "description": "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.", "items": { "$ref": "OfferItemCondition.schema.json" }, "type": "array" }, "itemOffered": { "anyOf": [ { "$ref": "Trip.schema.json" }, { "$ref": "CreativeWork.schema.json" }, { "$ref": "AggregateOffer.schema.json" }, { "$ref": "Event.schema.json" }, { "$ref": "Service.schema.json" }, { "$ref": "MenuItem.schema.json" }, { "$ref": "Product.schema.json" } ], "description": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using businessFunction, e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer." }, "mpn": { "description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.", "type": "string" }, "priceSpecification": { "description": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.", "items": { "$ref": "PriceSpecification.schema.json" }, "type": "array" }, "seller": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider." }, "serialNumber": { "description": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.", "type": "string" }, "sku": { "description": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.", "type": "string" }, "validFrom": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "date", "type": "string" } ], "description": "The date when the item becomes valid." }, "validThrough": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "date", "type": "string" } ], "description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours." }, "warranty": { "$ref": "WarrantyPromise.schema.json", "description": "The warranty promise(s) included in the offer." } }, "title": "Demand", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/AlignmentObject.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AlignmentObject", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "An intangible item that describes an alignment between a learning resource and a node in an educational framework.\n\nShould not be used where the nature of the alignment can be described using a simple property, for example to express that a resource teaches or assesses a competency.", "format": "http://schema.org/AlignmentObject", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "AlignmentObject" }, "alignmentType": { "description": "A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.", "items": { "type": "string" }, "type": "array" }, "educationalFramework": { "description": "The framework to which the resource being described is aligned.", "type": "string" }, "targetDescription": { "description": "The description of a node in an established educational framework.", "type": "string" }, "targetName": { "description": "The name of a node in an established educational framework.", "type": "string" }, "targetUrl": { "description": "The URL of a node in an established educational framework.", "format": "uri", "type": "string" } }, "required": [ "@type" ], "title": "AlignmentObject", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/HowToTool.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowToTool", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "HowToItem.schema.json", "description": "An item used as either a tool or supply when performing the instructions for how to to achieve a result." } ], "description": "A tool used (but not consumed) when performing instructions for how to achieve a result.", "format": "http://schema.org/HowToTool", "title": "HowToTool", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/GiveAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GiveAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TransferAction.schema.json", "description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another." } ], "description": "The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.\n\nRelated actions:\n\n\nTakeAction: Reciprocal of GiveAction.\nSendAction: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you).\n\n", "format": "http://schema.org/GiveAction", "properties": { "recipient": { "description": "A sub property of participant. The participant who is at the receiving end of the action.", "oneOf": [ { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, { "items": { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" } ] } }, "title": "GiveAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Report.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Report", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Article.schema.json", "description": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\n\nSee also blog post." } ], "description": "A Report generated by governmental or non-governmental organization.", "format": "http://schema.org/Report", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Report" }, "reportNumber": { "description": "The number or other unique designator assigned to a Report by the publishing organization.", "type": "string" } }, "required": [ "@type" ], "title": "Report", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/DayOfWeek.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DayOfWeek", "$schema": "http://json-schema.org/draft-07/schema#", "description": "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\n\nOriginally, URLs from GoodRelations were used (for Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday plus a special entry for PublicHolidays); these have now been integrated directly into schema.org.", "oneOf": [ { "const": "Friday", "description": "The day of the week between Thursday and Saturday." }, { "const": "Monday", "description": "The day of the week between Sunday and Tuesday." }, { "const": "PublicHolidays", "description": "This stands for any day that is a public holiday; it is a placeholder for all official public holidays in some particular location. While not technically a \"day of the week\", it can be used with OpeningHoursSpecification. In the context of an opening hours specification it can be used to indicate opening hours on public holidays, overriding general opening hours for the day of the week on which a public holiday occurs." }, { "const": "Saturday", "description": "The day of the week between Friday and Sunday." }, { "const": "Sunday", "description": "The day of the week between Saturday and Monday." }, { "const": "Thursday", "description": "The day of the week between Wednesday and Friday." }, { "const": "Tuesday", "description": "The day of the week between Monday and Wednesday." }, { "const": "Wednesday", "description": "The day of the week between Tuesday and Thursday." } ], "title": "DayOfWeek", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/HowTo.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:HowTo", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:CreativeWork", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "Instructions that explain how to achieve a result by performing a sequence of steps.", "properties": { "estimatedCost": { "anyOf": [ { "type": "string" }, { "$ref": "schema:MonetaryAmount" } ], "description": "The estimated cost of the supply or supplies consumed when performing instructions." }, "performTime": { "$comment": "https://schema.org/Duration", "description": "The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).", "type": "string" }, "prepTime": { "$comment": "https://schema.org/Duration", "description": "The length of time it takes to prepare the items to be used in instructions or a direction, in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).", "type": "string" }, "step": { "description": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "schema:CreativeWork" }, { "$ref": "schema:HowToSection" }, { "$ref": "schema:HowToStep" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "schema:CreativeWork" }, { "$ref": "schema:HowToSection" }, { "$ref": "schema:HowToStep" } ] }, "type": "array" } ] }, "steps": { "description": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "schema:CreativeWork" }, { "$ref": "schema:ItemList" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "schema:CreativeWork" }, { "$ref": "schema:ItemList" } ] }, "type": "array" } ] }, "supply": { "description": "A sub-property of instrument. A supply consumed when performing instructions or a direction.", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "schema:HowToSupply" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "schema:HowToSupply" } ] }, "type": "array" } ] }, "tool": { "description": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "schema:HowToTool" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "schema:HowToTool" } ] }, "type": "array" } ] }, "totalTime": { "$comment": "https://schema.org/Duration", "description": "The total time required to perform instructions or a direction (including time to prepare the supplies), in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).", "type": "string" }, "yield": { "anyOf": [ { "type": "string" }, { "$ref": "schema:QuantitativeValue" } ], "description": "The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles." } }, "title": "HowTo", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ShareAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ShareAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CommunicateAction", "description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation." } ], "description": "The act of distributing content to people for their amusement or edification.", "title": "ShareAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/TouristAttraction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TouristAttraction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Place", "description": "Entities that have a somewhat fixed, physical extension." } ], "description": "A tourist attraction. In principle any Thing can be a TouristAttraction, from a Mountain and LandmarksOrHistoricalBuildings to a LocalBusiness. This Type can be used on its own to describe a general TouristAttraction, or be used as an additionalType to add tourist attraction properties to any other type. (See examples below)", "format": "http://schema.org/TouristAttraction", "properties": { "availableLanguage": { "description": "A language someone may use with or at the item, service or place. Please use one of the language codes from the IETF BCP 47 standard. See also inLanguage", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Language" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Language" } ] }, "type": "array" } ] }, "touristType": { "description": "Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc.", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Audience" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Audience" } ] }, "type": "array" } ] } }, "title": "TouristAttraction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Duration.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Duration", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Quantity", "description": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'." } ], "description": "Quantity: Duration (use [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601)).", "title": "Duration", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/FilmAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/FilmAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreateAction.schema.json", "description": "The act of deliberately creating/producing/generating/building a result out of the agent." } ], "description": "The act of capturing sound and moving images on film, video, or digitally.", "format": "http://schema.org/FilmAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "FilmAction" } }, "required": [ "@type" ], "title": "FilmAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
d93f16a26bf98d23eb806d03ccce08d7cf15b99a
2020-05-20T22:06:03
schemas/VideoGame.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/VideoGame", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Game.schema.json", "description": "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting." }, { "$ref": "SoftwareApplication.schema.json", "description": "A software application." } ], "description": "A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.", "format": "http://schema.org/VideoGame", "properties": { "actor": { "description": "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.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "actors": { "description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "cheatCode": { "description": "Cheat codes to the game.", "items": { "$ref": "CreativeWork.schema.json" }, "type": "array" }, "director": { "$ref": "Person.schema.json", "description": "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." }, "directors": { "description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "gamePlatform": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "Thing.schema.json" } ], "description": "The electronic systems used to play video games." }, "gameServer": { "$ref": "GameServer.schema.json", "description": "The server on which it is possible to play the game." }, "gameTip": { "description": "Links to tips, tactics, etc.", "items": { "$ref": "CreativeWork.schema.json" }, "type": "array" }, "musicBy": { "anyOf": [ { "$ref": "MusicGroup.schema.json" }, { "$ref": "Person.schema.json" } ], "description": "The composer of the soundtrack." }, "playMode": { "description": "Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.", "items": { "$ref": "GamePlayMode.schema.json" }, "type": "array" }, "trailer": { "$ref": "VideoObject.schema.json", "description": "The trailer of a movie or tv/radio series, season, episode, etc." } }, "title": "VideoGame", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/ExhibitionEvent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ExhibitionEvent", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Event.schema.json", "description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects." } ], "description": "Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ...", "format": "http://schema.org/ExhibitionEvent", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ExhibitionEvent" } }, "required": [ "@type" ], "title": "ExhibitionEvent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/FoodEvent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/FoodEvent", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Event.schema.json", "description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects." } ], "description": "Event type: Food event.", "format": "http://schema.org/FoodEvent", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "FoodEvent" } }, "required": [ "@type" ], "title": "FoodEvent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/DataCatalog.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DataCatalog", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A collection of datasets.", "format": "http://schema.org/DataCatalog", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "DataCatalog" }, "dataset": { "description": "A dataset contained in this catalog.", "items": { "$ref": "Dataset.schema.json" }, "type": "array" } }, "required": [ "@type" ], "title": "DataCatalog", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
dcbb428317ce07ab8dcff50247c907f15443fb2f
2020-05-22T20:27:54
schemas/TVSeries.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TVSeries", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." }, { "$ref": "CreativeWorkSeries.schema.json", "description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike ItemList which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\n\nSpecific subtypes are available for describing TVSeries, RadioSeries, MovieSeries, BookSeries, Periodical and VideoGameSeries. In each case, the hasPart / isPartOf properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\n\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate." } ], "description": "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.", "format": "http://schema.org/TVSeries", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "TVSeries" }, "actor": { "description": "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.", "oneOf": [ { "$ref": "Person.schema.json" }, { "items": { "$ref": "Person.schema.json" }, "type": "array" } ] }, "actors": { "description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.", "oneOf": [ { "$ref": "Person.schema.json" }, { "items": { "$ref": "Person.schema.json" }, "type": "array" } ] }, "containsSeason": { "description": "A season that is part of the media series.", "oneOf": [ { "$ref": "CreativeWorkSeason.schema.json" }, { "items": { "$ref": "CreativeWorkSeason.schema.json" }, "type": "array" } ] }, "countryOfOrigin": { "$ref": "Country.schema.json", "description": "The country of the principal offices of the production company or individual responsible for the movie or program." }, "director": { "$ref": "Person.schema.json", "description": "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." }, "directors": { "description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.", "oneOf": [ { "$ref": "Person.schema.json" }, { "items": { "$ref": "Person.schema.json" }, "type": "array" } ] }, "episode": { "description": "An episode of a tv, radio or game media within a series or season.", "oneOf": [ { "$ref": "Episode.schema.json" }, { "items": { "$ref": "Episode.schema.json" }, "type": "array" } ] }, "episodes": { "description": "An episode of a TV/radio series or season.", "oneOf": [ { "$ref": "Episode.schema.json" }, { "items": { "$ref": "Episode.schema.json" }, "type": "array" } ] }, "musicBy": { "anyOf": [ { "$ref": "MusicGroup.schema.json" }, { "$ref": "Person.schema.json" } ], "description": "The composer of the soundtrack." }, "numberOfEpisodes": { "description": "The number of episodes in this season or series.", "type": "integer" }, "numberOfSeasons": { "description": "The number of seasons in this series.", "type": "integer" }, "productionCompany": { "$ref": "Organization.schema.json", "description": "The production company or studio responsible for the item e.g. series, video game, episode etc." }, "season": { "description": "A season in a media series.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "CreativeWorkSeason.schema.json" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "CreativeWorkSeason.schema.json" } ] }, "type": "array" } ] }, "seasons": { "description": "A season in a media series.", "oneOf": [ { "$ref": "CreativeWorkSeason.schema.json" }, { "items": { "$ref": "CreativeWorkSeason.schema.json" }, "type": "array" } ] }, "trailer": { "$ref": "VideoObject.schema.json", "description": "The trailer of a movie or tv/radio series, season, episode, etc." } }, "required": [ "@type" ], "title": "TVSeries", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/QuantitativeValue.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/QuantitativeValue", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "StructuredValue.schema.json", "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing." } ], "description": "A point value or interval for product characteristics and other purposes.", "format": "http://schema.org/QuantitativeValue", "properties": { "additionalProperty": { "description": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.", "items": { "$ref": "PropertyValue.schema.json" }, "type": "array" }, "maxValue": { "description": "The upper value of some characteristic or property.", "format": "http://schema.org/Number" }, "minValue": { "description": "The lower value of some characteristic or property.", "format": "http://schema.org/Number" }, "unitCode": { "description": "The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon.", "format": "uri", "type": "string" }, "unitText": { "description": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.", "format": "http://schema.org/Text" }, "value": { "$ref": "StructuredValue.schema.json", "description": "The value of the quantitative value or property value node.\n\n\nFor QuantitativeValue and MonetaryAmount, the recommended type for values is 'Number'.\nFor PropertyValue, it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n" }, "valueReference": { "description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.", "items": { "oneOf": [ { "$ref": "PropertyValue.schema.json" }, { "$ref": "QualitativeValue.schema.json" }, { "$ref": "StructuredValue.schema.json" }, { "$ref": "Enumeration.schema.json" }, { "$ref": "QuantitativeValue.schema.json" } ] }, "type": "array" } }, "title": "QuantitativeValue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/AcceptAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AcceptAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "AllocateAction.schema.json", "description": "The act of organizing tasks/objects/events by associating resources to it." } ], "description": "The act of committing to/adopting an object.\n\nRelated actions:\n\n\nRejectAction: The antonym of AcceptAction.\n\n", "format": "http://schema.org/AcceptAction", "title": "AcceptAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/ScheduleAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ScheduleAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "PlanAction.schema.json", "description": "The act of planning the execution of an event/task/action/reservation/plan to a future date." } ], "description": "Scheduling future actions, events, or tasks.\n\nRelated actions:\n\n\nReserveAction: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation.\n\n", "format": "http://schema.org/ScheduleAction", "title": "ScheduleAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/ReceiveAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ReceiveAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TransferAction.schema.json", "description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another." } ], "description": "The act of physically/electronically taking delivery of an object thathas been transferred from an origin to a destination. Reciprocal of SendAction.\n\nRelated actions:\n\n\nSendAction: The reciprocal of ReceiveAction.\nTakeAction: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transfered (e.g. I can receive a package, but it does not mean the package is now mine).\n\n", "format": "http://schema.org/ReceiveAction", "properties": { "deliveryMethod": { "description": "A sub property of instrument. The method of delivery.", "items": { "$ref": "DeliveryMethod.schema.json" }, "type": "array" }, "sender": { "description": "A sub property of participant. The participant who is at the sending end of the action.", "items": { "oneOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Audience.schema.json" } ] }, "type": "array" } }, "title": "ReceiveAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/TVSeason.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TVSeason", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." }, { "$ref": "CreativeWorkSeason.schema.json", "description": "A media season e.g. tv, radio, video game etc." } ], "description": "Season dedicated to TV broadcast and associated online delivery.", "format": "http://schema.org/TVSeason", "properties": { "countryOfOrigin": { "$ref": "Country.schema.json", "description": "The country of the principal offices of the production company or individual responsible for the movie or program." }, "partOfTVSeries": { "$ref": "TVSeries.schema.json", "description": "The TV series to which this episode or season belongs." } }, "title": "TVSeason", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/DislikeAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:DislikeAction", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:ReactAction", "description": "The act of responding instinctively and emotionally to an object, expressing a sentiment." } ], "description": "The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.", "title": "DislikeAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/MusicPlaylist.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MusicPlaylist", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A collection of music tracks in playlist form.", "format": "http://schema.org/MusicPlaylist", "properties": { "numTracks": { "description": "The number of tracks in this album or playlist.", "type": "integer" }, "track": { "description": "A music recording (track)\u2014usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.", "oneOf": [ { "anyOf": [ { "$ref": "ItemList.schema.json" }, { "$ref": "MusicRecording.schema.json" } ] }, { "items": { "anyOf": [ { "$ref": "ItemList.schema.json" }, { "$ref": "MusicRecording.schema.json" } ] }, "type": "array" } ] }, "tracks": { "description": "A music recording (track)\u2014usually a single song.", "oneOf": [ { "$ref": "MusicRecording.schema.json" }, { "items": { "$ref": "MusicRecording.schema.json" }, "type": "array" } ] } }, "title": "MusicPlaylist", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Invoice.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Invoice", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Intangible", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "A statement of the money due for goods or services; a bill.", "properties": { "accountId": { "description": "The identifier for the account the payment will be applied to.", "type": "string" }, "billingPeriod": { "description": "The time interval used to compute the invoice.", "format": "https://schema.org/Duration", "type": "string" }, "broker": { "description": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "category": { "description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "http://schema.org/Thing" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "http://schema.org/Thing" } ] }, "type": "array" } ] }, "confirmationNumber": { "description": "A number that confirms the given order or payment has been received.", "type": "string" }, "customer": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "Party placing the order or paying the invoice." }, "minimumPaymentDue": { "anyOf": [ { "$ref": "http://schema.org/MonetaryAmount" }, { "$ref": "http://schema.org/PriceSpecification" } ], "description": "The minimum payment required at this time." }, "paymentDue": { "description": "The date that payment is due.", "format": "date-time", "type": "string" }, "paymentDueDate": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date that payment is due." }, "paymentMethod": { "$ref": "http://schema.org/PaymentMethod", "description": "The name of the credit card or other method of payment for the order." }, "paymentMethodId": { "description": "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "paymentStatus": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/PaymentStatusType" } ], "description": "The status of payment; whether the invoice has been paid or not." }, "provider": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller." }, "referencesOrder": { "$ref": "http://schema.org/Order", "description": "The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice." }, "scheduledPaymentDate": { "description": "The date the invoice is scheduled to be paid.", "format": "date", "type": "string" }, "totalPaymentDue": { "anyOf": [ { "$ref": "http://schema.org/MonetaryAmount" }, { "$ref": "http://schema.org/PriceSpecification" } ], "description": "The total amount due." } }, "title": "Invoice", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/SportingGoodsStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SportingGoodsStore", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Store.schema.json", "description": "A retail good store." } ], "description": "A sporting goods store.", "format": "http://schema.org/SportingGoodsStore", "title": "SportingGoodsStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/BroadcastService.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BroadcastService", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Service", "description": "A service provided by an organization, e.g. delivery service, print services, etc." } ], "description": "A delivery service through which content is provided via broadcast over the air or online.", "format": "http://schema.org/BroadcastService", "properties": { "area": { "$ref": "http://schema.org/Place", "description": "The area within which users can expect to reach the broadcast service." }, "broadcastAffiliateOf": { "$ref": "http://schema.org/Organization", "description": "The media network(s) whose content is broadcast on this station." }, "broadcastDisplayName": { "description": "The name displayed in the channel guide. For many US affiliates, it is the network name.", "type": "string" }, "broadcastFrequency": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/BroadcastFrequencySpecification" } ], "description": "The frequency used for over-the-air broadcasts. Numeric values or simple ranges e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. \"87 FM\"." }, "broadcastTimezone": { "description": "The timezone in ISO 8601 format for which the service bases its broadcasts", "type": "string" }, "broadcaster": { "$ref": "http://schema.org/Organization", "description": "The organization owning or operating the broadcast service." }, "hasBroadcastChannel": { "description": "A broadcast channel of a broadcast service.", "oneOf": [ { "$ref": "http://schema.org/BroadcastChannel" }, { "items": { "$ref": "http://schema.org/BroadcastChannel" }, "type": "array" } ] }, "inLanguage": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Language" } ], "description": "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." }, "parentService": { "description": "A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.", "oneOf": [ { "$ref": "http://schema.org/BroadcastService" }, { "items": { "$ref": "http://schema.org/BroadcastService" }, "type": "array" } ] }, "videoFormat": { "description": "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).", "type": "string" } }, "title": "BroadcastService", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/WatchAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/WatchAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/ConsumeAction", "description": "The act of ingesting information/resources/food." } ], "description": "The act of consuming dynamic/moving visual content.", "title": "WatchAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/DataCatalog.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DataCatalog", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CreativeWork", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A collection of datasets.", "format": "http://schema.org/DataCatalog", "properties": { "dataset": { "description": "A dataset contained in this catalog.", "oneOf": [ { "$ref": "http://schema.org/Dataset" }, { "items": { "$ref": "http://schema.org/Dataset" }, "type": "array" } ] } }, "title": "DataCatalog", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Preschool.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Preschool", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/EducationalOrganization", "description": "An educational organization." } ], "description": "A preschool.", "title": "Preschool", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Barcode.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Barcode", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ImageObject.schema.json", "description": "An image file." } ], "description": "An image of a visual machine-readable code such as a barcode or QR code.", "format": "http://schema.org/Barcode", "title": "Barcode", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/BreadcrumbList.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BreadcrumbList", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ItemList.schema.json", "description": "A list of items of any sort\u2014for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting." } ], "description": "A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\n\nThe position property is used to reconstruct the order of the items in a BreadcrumbList The convention is that a breadcrumb list has an itemListOrder of ItemListOrderAscending (lower values listed first), and that the first items in this list correspond to the \"top\" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list.", "format": "http://schema.org/BreadcrumbList", "title": "BreadcrumbList", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/SkiResort.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SkiResort", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "SportsActivityLocation.schema.json", "description": "A sports location, such as a playing field." } ], "description": "A ski resort.", "format": "http://schema.org/SkiResort", "title": "SkiResort", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Mountain.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Mountain", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Landform", "description": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins." } ], "description": "A mountain, like Mount Whitney or Mount Everest.", "title": "Mountain", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/PlaceOfWorship.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PlaceOfWorship", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CivicStructure", "description": "A public structure, such as a town hall or concert hall." } ], "description": "Place of worship, such as a church, synagogue, or mosque.", "title": "PlaceOfWorship", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c
2020-05-13T21:31:46
schemas/PublicationVolume.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PublicationVolume", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.\n\nSee also blog post.", "format": "http://schema.org/PublicationVolume", "properties": { "pageEnd": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The page on which the work ends; for example \"138\" or \"xvi\"." }, "pageStart": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The page on which the work starts; for example \"135\" or \"xiii\"." }, "pagination": { "description": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".", "items": { "type": "string" }, "type": "array" }, "volumeNumber": { "description": "Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".", "items": { "anyOf": [ { "type": "integer" }, { "type": "string" } ] }, "type": "array" } }, "title": "PublicationVolume", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Bakery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Bakery", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/FoodEstablishment", "description": "A food-related business." } ], "description": "A bakery.", "format": "http://schema.org/Bakery", "title": "Bakery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Airline.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Airline", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Organization", "description": "An organization such as a school, NGO, corporation, club, etc." } ], "description": "An organization that provides flights for passengers.", "properties": { "boardingPolicy": { "$ref": "http://schema.org/BoardingPolicyType", "description": "The type of boarding policy used by the airline (e.g. zone-based or group-based)." }, "iataCode": { "description": "IATA identifier for an airline or airport.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "title": "Airline", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/HowToTool.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowToTool", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/HowToItem", "description": "An item used as either a tool or supply when performing the instructions for how to to achieve a result." } ], "description": "A tool used (but not consumed) when performing instructions for how to achieve a result.", "format": "http://schema.org/HowToTool", "title": "HowToTool", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/TouristTrip.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:TouristTrip", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Trip", "description": "A trip or journey. An itinerary of visits to one or more places." } ], "description": "A tourist trip. A created itinerary of visits to one or more places of interest ([[TouristAttraction]]/[[TouristDestination]]) often linked by a similar theme, geographic area, or interest to a particular [[touristType]]. The [UNWTO](http://www2.unwto.org/) defines tourism trip as the Trip taken by visitors.\n (See examples below).", "properties": { "touristType": { "description": "Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc. ", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "schema:Audience" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "schema:Audience" } ] }, "type": "array" } ] } }, "title": "TouristTrip", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/PreOrderAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PreOrderAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TradeAction.schema.json", "description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment." } ], "description": "An agent orders a (not yet released) object/product/service to be delivered/sent.", "format": "http://schema.org/PreOrderAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "PreOrderAction" } }, "required": [ "@type" ], "title": "PreOrderAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/TouristAttraction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TouristAttraction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Place.schema.json", "description": "Entities that have a somewhat fixed, physical extension." } ], "description": "A tourist attraction. In principle any Thing can be a TouristAttraction, from a Mountain and LandmarksOrHistoricalBuildings to a LocalBusiness. This Type can be used on its own to describe a general TouristAttraction, or be used as an additionalType to add tourist attraction properties to any other type. (See examples below)", "format": "http://schema.org/TouristAttraction", "properties": { "availableLanguage": { "description": "A language someone may use with or at the item, service or place. Please use one of the language codes from the IETF BCP 47 standard. See also inLanguage", "items": { "oneOf": [ { "type": "string" }, { "$ref": "Language.schema.json" } ] }, "type": "array" }, "touristType": { "description": "Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc.", "items": { "oneOf": [ { "$ref": "Audience.schema.json" }, { "type": "string" } ] }, "type": "array" } }, "title": "TouristAttraction", "type": "object" }
Apache-2.0
en