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/Synagogue.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Synagogue",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PlaceOfWorship.schema.json",
"description": "Place of worship, such as a church, synagogue, or mosque."
}
],
"description": "A synagogue.",
"format": "http://schema.org/Synagogue",
"title": "Synagogue",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Notary.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Notary",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/LegalService",
"description": "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s)."
}
],
"description": "A notary.",
"format": "http://schema.org/Notary",
"title": "Notary",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/SomeProducts.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SomeProducts",
"$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 placeholder for multiple similar products of the same kind.",
"format": "http://schema.org/SomeProducts",
"properties": {
"inventoryLevel": {
"$ref": "QuantitativeValue.schema.json",
"description": "The current approximate inventory level for the item or items."
}
},
"title": "SomeProducts",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | 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.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "Airline",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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": "FoodEstablishment.schema.json",
"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 | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/FinancialProduct.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/FinancialProduct",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Service.schema.json",
"description": "A service provided by an organization, e.g. delivery service, print services, etc."
}
],
"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.",
"format": "http://schema.org/FinancialProduct",
"properties": {
"annualPercentageRate": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction."
},
"feesAndCommissionsSpecification": {
"description": "Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.",
"items": {
"oneOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"interestRate": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate."
}
},
"title": "FinancialProduct",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ChooseAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ChooseAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AssessAction.schema.json",
"description": "The act of forming one's opinion, reaction or sentiment."
}
],
"description": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.",
"format": "http://schema.org/ChooseAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ChooseAction"
},
"actionOption": {
"description": "A sub property of object. The options subject to this action.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
},
"option": {
"description": "A sub property of object. The options subject to this action.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "ChooseAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | schemas/VisualArtwork.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/VisualArtwork",
"$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 work of art that is primarily visual in character.",
"format": "http://schema.org/VisualArtwork",
"properties": {
"artEdition": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\")."
},
"artMedium": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)"
},
"artform": {
"description": "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
},
"artworkSurface": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc."
},
"depth": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The depth of the item."
},
"height": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The height of the item."
},
"surface": {
"description": "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
},
"width": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The width of the item."
}
},
"title": "VisualArtwork",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | schemas/HowTo.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HowTo",
"$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": "Instructions that explain how to achieve a result by performing a sequence of steps.",
"format": "http://schema.org/HowTo",
"properties": {
"estimatedCost": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "MonetaryAmount.schema.json"
}
],
"description": "The estimated cost of the supply or supplies consumed when performing instructions."
},
"performTime": {
"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.",
"format": "https://schema.org/Duration",
"type": "string"
},
"prepTime": {
"description": "The length of time it takes to prepare the items to be used in instructions or a direction, in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"step": {
"description": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "HowToSection.schema.json"
},
{
"$ref": "HowToStep.schema.json"
}
]
},
"type": "array"
},
"steps": {
"description": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "ItemList.schema.json"
}
]
},
"type": "array"
},
"supply": {
"description": "A sub-property of instrument. A supply consumed when performing instructions or a direction.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "HowToSupply.schema.json"
}
]
},
"type": "array"
},
"tool": {
"description": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "HowToTool.schema.json"
}
]
},
"type": "array"
},
"totalTime": {
"description": "The total time required to perform instructions or a direction (including time to prepare the supplies), in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"yield": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"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 | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Corporation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Corporation",
"$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": "Organization: A business corporation.",
"format": "http://schema.org/Corporation",
"properties": {
"tickerSymbol": {
"description": "The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022.",
"format": "http://schema.org/Text"
}
},
"title": "Corporation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | 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",
"title": "DislikeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/SportsOrganization.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SportsOrganization",
"$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": "Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations.",
"format": "http://schema.org/SportsOrganization",
"title": "SportsOrganization",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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": "OrganizeAction.schema.json",
"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 | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/DigitalDocument.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DigitalDocument",
"$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": "An electronic file or document.",
"format": "http://schema.org/DigitalDocument",
"properties": {
"hasDigitalDocumentPermission": {
"description": "A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to \"public\".",
"items": {
"$ref": "DigitalDocumentPermission.schema.json"
},
"type": "array"
}
},
"title": "DigitalDocument",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/InformAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:InformAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema: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 notifying someone of information pertinent to them, with no expectation of a response.",
"properties": {
"event": {
"description": "Upcoming or past event associated with this place, organization, or action.",
"oneOf": [
{
"$ref": "schema:Event"
},
{
"items": {
"$ref": "schema:Event"
},
"type": "array"
}
]
}
},
"title": "InformAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/VideoObject.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/VideoObject",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MediaObject.schema.json",
"description": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's)."
}
],
"description": "A video file.",
"format": "http://schema.org/VideoObject",
"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"
},
"caption": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "MediaObject.schema.json"
}
],
"description": "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the encodingFormat."
},
"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"
},
"musicBy": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "MusicGroup.schema.json"
}
],
"description": "The composer of the soundtrack."
},
"thumbnail": {
"$ref": "ImageObject.schema.json",
"description": "Thumbnail image for an image or video."
},
"transcript": {
"description": "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.",
"type": "string"
},
"videoFrameSize": {
"description": "The frame size of the video.",
"type": "string"
},
"videoQuality": {
"description": "The quality of the video.",
"type": "string"
}
},
"title": "VideoObject",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Map.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Map",
"$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 map.",
"format": "http://schema.org/Map",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Map"
},
"mapType": {
"description": "Indicates the kind of Map, from the MapCategoryType Enumeration.",
"items": {
"$ref": "MapCategoryType.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "Map",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/UserComments.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/UserComments",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "UserInteraction.schema.json",
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment."
}
],
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment.",
"format": "http://schema.org/UserComments",
"properties": {
"commentText": {
"description": "The text of the UserComment.",
"type": "string"
},
"commentTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The time at which the UserComment was made."
},
"creator": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork."
},
"discusses": {
"$ref": "CreativeWork.schema.json",
"description": "Specifies the CreativeWork associated with the UserComment."
},
"replyToUrl": {
"description": "The URL at which a reply may be posted to the specified UserComment.",
"format": "uri",
"type": "string"
}
},
"title": "UserComments",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/FurnitureStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:FurnitureStore",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Store",
"description": "A retail good store."
}
],
"description": "A furniture store.",
"title": "FurnitureStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/EmailMessage.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/EmailMessage",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Message.schema.json",
"description": "A single message from a sender to one or more organizations or people."
}
],
"description": "An email message.",
"format": "http://schema.org/EmailMessage",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "EmailMessage"
}
},
"required": [
"@type"
],
"title": "EmailMessage",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/MediaSubscription.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MediaSubscription",
"$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 subscription which allows a user to access media including audio, video, books, etc.",
"format": "http://schema.org/MediaSubscription",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "MediaSubscription"
},
"authenticator": {
"$ref": "Organization.schema.json",
"description": "The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media."
},
"expectsAcceptanceOf": {
"description": "An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.",
"oneOf": [
{
"$ref": "Offer.schema.json"
},
{
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "MediaSubscription",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/RentAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:RentAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:TradeAction",
"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": "The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment.",
"properties": {
"landlord": {
"description": "A sub property of participant. The owner of the real estate property.",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
"type": "array"
}
]
},
"realEstateAgent": {
"description": "A sub property of participant. The real estate agent involved in the action.",
"oneOf": [
{
"$ref": "schema:RealEstateAgent"
},
{
"items": {
"$ref": "schema:RealEstateAgent"
},
"type": "array"
}
]
}
},
"title": "RentAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/MovingCompany.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MovingCompany",
"$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": "A moving company.",
"format": "http://schema.org/MovingCompany",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "MovingCompany"
}
},
"required": [
"@type"
],
"title": "MovingCompany",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Park.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Park",
"$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 park.",
"format": "http://schema.org/Park",
"title": "Park",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Mass.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Mass",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Quantity",
"description": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'."
}
],
"description": "Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.",
"title": "Mass",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Thing.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Thing",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "The most generic type of item.",
"format": "http://schema.org/Thing",
"properties": {
"@context": {
"type": "string"
},
"@type": {
"type": "string"
},
"additionalType": {
"description": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.",
"oneOf": [
{
"format": "uri",
"type": "string"
},
{
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
}
]
},
"alternateName": {
"description": "An alias for the item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"description": {
"description": "A description of the item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"disambiguatingDescription": {
"description": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"identifier": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "PropertyValue.schema.json"
}
],
"description": "The identifier property represents any kind of identifier for any kind of Thing, such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See background notes for more details."
},
"image": {
"description": "An image of the item. This can be a URL or a fully described ImageObject.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "ImageObject.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "ImageObject.schema.json"
}
]
},
"type": "array"
}
]
},
"mainEntityOfPage": {
"description": "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See background notes for details.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
}
]
},
"type": "array"
}
]
},
"name": {
"description": "The name of the item.",
"type": "string"
},
"potentialAction": {
"description": "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.",
"oneOf": [
{
"$ref": "Action.schema.json"
},
{
"items": {
"$ref": "Action.schema.json"
},
"type": "array"
}
]
},
"sameAs": {
"description": "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.",
"oneOf": [
{
"format": "uri",
"type": "string"
},
{
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
}
]
},
"subjectOf": {
"description": "A CreativeWork or Event about this Thing.",
"oneOf": [
{
"anyOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "Event.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "Event.schema.json"
}
]
},
"type": "array"
}
]
},
"url": {
"description": "URL of the item.",
"format": "uri",
"type": "string"
}
},
"title": "Thing",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/BedType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BedType",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/QualitativeValue",
"description": "A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'."
}
],
"description": "A type of bed. This is used for indicating the bed or beds available in an accommodation.",
"format": "http://schema.org/BedType",
"title": "BedType",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/BookFormatType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BookFormatType",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "The publication format of the book.",
"oneOf": [
{
"const": "AudiobookFormat",
"description": "Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties."
},
{
"const": "EBook",
"description": "Book format: Ebook."
},
{
"const": "Hardcover",
"description": "Book format: Hardcover."
},
{
"const": "Paperback",
"description": "Book format: Paperback."
}
],
"title": "BookFormatType",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/MoveAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MoveAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Action.schema.json",
"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 an agent relocating to a place.\n\nRelated actions:\n\n\nTransferAction: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.\n\n",
"format": "http://schema.org/MoveAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "MoveAction"
},
"fromLocation": {
"description": "A sub property of location. The original location of the object or the agent before the action.",
"oneOf": [
{
"$ref": "Place.schema.json"
},
{
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
}
]
},
"toLocation": {
"description": "A sub property of location. The final location of the object or the agent after the action.",
"oneOf": [
{
"$ref": "Place.schema.json"
},
{
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "MoveAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/PublicSwimmingPool.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PublicSwimmingPool",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "SportsActivityLocation.schema.json",
"description": "A sports location, such as a playing field."
}
],
"description": "A public swimming pool.",
"format": "http://schema.org/PublicSwimmingPool",
"title": "PublicSwimmingPool",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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": "http://schema.org/ConsumeAction",
"description": "The act of ingesting information/resources/food."
}
],
"description": "The act of swallowing solid objects.",
"title": "EatAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Aquarium.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Aquarium",
"$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": "Aquarium.",
"format": "http://schema.org/Aquarium",
"title": "Aquarium",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/MenuItem.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MenuItem",
"$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 food or drink item listed in a menu or menu section.",
"format": "http://schema.org/MenuItem",
"properties": {
"menuAddOn": {
"description": "Additional menu item(s) such as a side dish of salad or side order of fries that can be added to this menu item. Additionally it can be a menu section containing allowed add-on menu items for this menu item.",
"oneOf": [
{
"anyOf": [
{
"$ref": "MenuItem.schema.json"
},
{
"$ref": "MenuSection.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "MenuItem.schema.json"
},
{
"$ref": "MenuSection.schema.json"
}
]
},
"type": "array"
}
]
},
"nutrition": {
"$ref": "NutritionInformation.schema.json",
"description": "Nutrition information about the recipe or menu item."
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
"type": "array"
}
]
},
"suitableForDiet": {
"description": "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.",
"oneOf": [
{
"$ref": "RestrictedDiet.schema.json"
},
{
"items": {
"$ref": "RestrictedDiet.schema.json"
},
"type": "array"
}
]
}
},
"title": "MenuItem",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Product.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Product",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Thing",
"description": "The most generic type of item."
}
],
"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.",
"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.",
"oneOf": [
{
"$ref": "http://schema.org/PropertyValue"
},
{
"items": {
"$ref": "http://schema.org/PropertyValue"
},
"type": "array"
}
]
},
"aggregateRating": {
"$ref": "http://schema.org/AggregateRating",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"audience": {
"$ref": "http://schema.org/Audience",
"description": "An intended audience, i.e. a group for whom something was created."
},
"award": {
"description": "An award won by or for this item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"awards": {
"description": "Awards won by or for this item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"brand": {
"anyOf": [
{
"$ref": "http://schema.org/Brand"
},
{
"$ref": "http://schema.org/Organization"
}
],
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person."
},
"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"
}
]
},
"color": {
"description": "The color of the product.",
"type": "string"
},
"depth": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The depth of the item."
},
"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"
},
"height": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The height of the item."
},
"isAccessoryOrSparePartFor": {
"description": "A pointer to another product (or multiple products) for which this product is an accessory or spare part.",
"oneOf": [
{
"$ref": "http://schema.org/Product"
},
{
"items": {
"$ref": "http://schema.org/Product"
},
"type": "array"
}
]
},
"isConsumableFor": {
"description": "A pointer to another product (or multiple products) for which this product is a consumable.",
"oneOf": [
{
"$ref": "http://schema.org/Product"
},
{
"items": {
"$ref": "http://schema.org/Product"
},
"type": "array"
}
]
},
"isRelatedTo": {
"description": "A pointer to another, somehow related product (or multiple products).",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Product"
},
{
"$ref": "http://schema.org/Service"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Product"
},
{
"$ref": "http://schema.org/Service"
}
]
},
"type": "array"
}
]
},
"isSimilarTo": {
"description": "A pointer to another, functionally similar product (or multiple products).",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Product"
},
{
"$ref": "http://schema.org/Service"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Product"
},
{
"$ref": "http://schema.org/Service"
}
]
},
"type": "array"
}
]
},
"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.",
"oneOf": [
{
"$ref": "http://schema.org/OfferItemCondition"
},
{
"items": {
"$ref": "http://schema.org/OfferItemCondition"
},
"type": "array"
}
]
},
"logo": {
"description": "An associated logo.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/ImageObject"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/ImageObject"
}
]
},
"type": "array"
}
]
},
"manufacturer": {
"$ref": "http://schema.org/Organization",
"description": "The manufacturer of the product."
},
"material": {
"description": "A material that something is made from, e.g. leather, wool, cotton, paper.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "http://schema.org/Product"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "http://schema.org/Product"
}
]
},
"type": "array"
}
]
},
"model": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/ProductModel"
}
],
"description": "The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties."
},
"mpn": {
"description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
"type": "string"
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Demand"
},
{
"$ref": "http://schema.org/Offer"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Demand"
},
{
"$ref": "http://schema.org/Offer"
}
]
},
"type": "array"
}
]
},
"productID": {
"description": "The product identifier, such as ISBN. For example: meta itemprop=\"productID\" content=\"isbn:123-456-789\".",
"type": "string"
},
"productionDate": {
"description": "The date of production of the item, e.g. vehicle.",
"format": "date",
"type": "string"
},
"purchaseDate": {
"description": "The date the item e.g. vehicle was purchased by the current owner.",
"format": "date",
"type": "string"
},
"releaseDate": {
"description": "The release date of a product or product model. This can be used to distinguish the exact variant of a product.",
"format": "date",
"type": "string"
},
"review": {
"description": "A review of the item.",
"oneOf": [
{
"$ref": "http://schema.org/Review"
},
{
"items": {
"$ref": "http://schema.org/Review"
},
"type": "array"
}
]
},
"reviews": {
"description": "Review of the item.",
"oneOf": [
{
"$ref": "http://schema.org/Review"
},
{
"items": {
"$ref": "http://schema.org/Review"
},
"type": "array"
}
]
},
"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"
},
"slogan": {
"description": "A slogan or motto associated with the item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"weight": {
"$ref": "http://schema.org/QuantitativeValue",
"description": "The weight of the product or person."
},
"width": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The width of the item."
}
},
"title": "Product",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Residence.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Residence",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Place",
"description": "Entities that have a somewhat fixed, physical extension."
}
],
"description": "The place where a person lives.",
"title": "Residence",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/WriteAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WriteAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CreateAction",
"description": "The act of deliberately creating/producing/generating/building a result out of the agent."
}
],
"description": "The act of authoring written creative content.",
"properties": {
"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."
},
"language": {
"description": "A sub property of instrument. The language used on this action.",
"oneOf": [
{
"$ref": "http://schema.org/Language"
},
{
"items": {
"$ref": "http://schema.org/Language"
},
"type": "array"
}
]
}
},
"title": "WriteAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | bff980152b9479eca4d09d407e6df5567a3ebe2e | 2020-05-13T21:54:35 | schemas/Event.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Event",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"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.",
"format": "http://schema.org/Event",
"properties": {
"about": {
"$ref": "Thing.schema.json",
"description": "The subject matter of the content."
},
"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"
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"attendee": {
"description": "A person or organization attending the event.",
"items": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"attendees": {
"description": "A person attending the event.",
"items": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"audience": {
"$ref": "Audience.schema.json",
"description": "An intended audience, i.e. a group for whom something was created."
},
"composer": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "The person or organization who wrote a composition, or who is the composer of a work performed at some event."
},
"contributor": {
"description": "A secondary contributor to the CreativeWork or Event.",
"items": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.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."
},
"doorTime": {
"anyOf": [
{
"format": "time",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The time admission will commence."
},
"duration": {
"description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"endDate": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The end date and time of the item (in ISO 8601 date format)."
},
"eventStatus": {
"description": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.",
"items": {
"$ref": "EventStatusType.schema.json"
},
"type": "array"
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"items": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"inLanguage": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Language.schema.json"
}
],
"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."
},
"isAccessibleForFree": {
"description": "A flag to signal that the item, event, or place is accessible for free.",
"type": "boolean"
},
"location": {
"anyOf": [
{
"$ref": "Place.schema.json"
},
{
"type": "string"
},
{
"$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."
},
"maximumAttendeeCapacity": {
"description": "The total number of individuals that may attend an event or venue.",
"type": "integer"
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"items": {
"anyOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
"type": "array"
},
"organizer": {
"description": "An organizer of an Event.",
"items": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"performer": {
"description": "A performer at the event\u2014for example, a presenter, musician, musical group or actor.",
"items": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"performers": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "The main performer or performers of the event\u2014for example, a presenter, musician, or actor."
},
"previousStartDate": {
"description": "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.",
"items": {
"format": "date",
"type": "string"
},
"type": "array"
},
"recordedIn": {
"$ref": "CreativeWork.schema.json",
"description": "The CreativeWork that captured all or part of this Event."
},
"remainingAttendeeCapacity": {
"description": "The number of attendee places for an event that remain unallocated.",
"type": "integer"
},
"review": {
"description": "A review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"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": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"startDate": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The start date and time of the item (in ISO 8601 date format)."
},
"subEvent": {
"description": "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"subEvents": {
"description": "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"superEvent": {
"description": "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"translator": {
"description": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.",
"items": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"typicalAgeRange": {
"description": "The typical expected age range, e.g. '7-9', '11-'.",
"type": "string"
},
"workFeatured": {
"description": "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).",
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
},
"workPerformed": {
"description": "A work performed in some event, for example a play performed in a TheaterEvent.",
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
}
},
"title": "Event",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/AggregateRating.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AggregateRating",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Rating.schema.json",
"description": "A rating is an evaluation on a numeric scale, such as 1 to 5 stars."
}
],
"description": "The average rating based on multiple ratings or reviews.",
"format": "http://schema.org/AggregateRating",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "AggregateRating"
},
"itemReviewed": {
"$ref": "Thing.schema.json",
"description": "The item that is being reviewed/rated."
},
"ratingCount": {
"description": "The count of total number of ratings.",
"type": "integer"
},
"reviewCount": {
"description": "The count of total number of reviews.",
"type": "integer"
}
},
"required": [
"@type"
],
"title": "AggregateRating",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Sculpture.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Sculpture",
"$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 piece of sculpture.",
"format": "http://schema.org/Sculpture",
"title": "Sculpture",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/LoseAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LoseAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AchieveAction.schema.json",
"description": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process."
}
],
"description": "The act of being defeated in a competitive activity.",
"format": "http://schema.org/LoseAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "LoseAction"
},
"winner": {
"description": "A sub property of participant. The winner of the action.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "LoseAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/CheckInAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CheckInAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CommunicateAction.schema.json",
"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 an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\n\nRelated actions:\n\n\nCheckOutAction: The antonym of CheckInAction.\nArriveAction: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\nConfirmAction: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service rather than its validity/existence.\n\n",
"format": "http://schema.org/CheckInAction",
"title": "CheckInAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/LiveBlogPosting.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:LiveBlogPosting",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:BlogPosting",
"description": "A blog post."
}
],
"description": "A [[LiveBlogPosting]] is a [[BlogPosting]] intended to provide a rolling textual coverage of an ongoing event through continuous updates.",
"properties": {
"coverageEndTime": {
"description": "The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.",
"format": "date-time",
"type": "string"
},
"coverageStartTime": {
"description": "The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.",
"format": "date-time",
"type": "string"
},
"liveBlogUpdate": {
"description": "An update to the LiveBlog.",
"oneOf": [
{
"$ref": "schema:BlogPosting"
},
{
"items": {
"$ref": "schema:BlogPosting"
},
"type": "array"
}
]
}
},
"title": "LiveBlogPosting",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/HardwareStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:HardwareStore",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Store",
"description": "A retail good store."
}
],
"description": "A hardware store.",
"title": "HardwareStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/PodcastSeason.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:PodcastSeason",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:CreativeWorkSeason",
"description": "A media season e.g. tv, radio, video game etc."
}
],
"description": "A single season of a podcast. Many podcasts do not break down into separate seasons. In that case, PodcastSeries should be used.",
"title": "PodcastSeason",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/Event.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Event",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"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.",
"format": "http://schema.org/Event",
"properties": {
"about": {
"$ref": "Thing.schema.json",
"description": "The subject matter of the content."
},
"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"
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"attendee": {
"description": "A person or organization attending the event.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"attendees": {
"description": "A person attending the event.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"audience": {
"$ref": "Audience.schema.json",
"description": "An intended audience, i.e. a group for whom something was created."
},
"composer": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "The person or organization who wrote a composition, or who is the composer of a work performed at some event."
},
"contributor": {
"description": "A secondary contributor to the CreativeWork or Event.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.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."
},
"doorTime": {
"anyOf": [
{
"format": "time",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The time admission will commence."
},
"duration": {
"description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"endDate": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The end date and time of the item (in ISO 8601 date format)."
},
"eventStatus": {
"description": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.",
"items": {
"$ref": "EventStatusType.schema.json"
},
"type": "array"
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"inLanguage": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Language.schema.json"
}
],
"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."
},
"isAccessibleForFree": {
"description": "A flag to signal that the item, event, or place is accessible for free.",
"items": {
"type": "boolean"
},
"type": "array"
},
"location": {
"anyOf": [
{
"$ref": "Place.schema.json"
},
{
"type": "string"
},
{
"$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."
},
"maximumAttendeeCapacity": {
"description": "The total number of individuals that may attend an event or venue.",
"type": "integer"
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"items": {
"oneOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
"type": "array"
},
"organizer": {
"description": "An organizer of an Event.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"performer": {
"description": "A performer at the event\u2014for example, a presenter, musician, musical group or actor.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"performers": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "The main performer or performers of the event\u2014for example, a presenter, musician, or actor."
},
"previousStartDate": {
"description": "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.",
"items": {
"format": "date",
"type": "string"
},
"type": "array"
},
"recordedIn": {
"$ref": "CreativeWork.schema.json",
"description": "The CreativeWork that captured all or part of this Event."
},
"remainingAttendeeCapacity": {
"description": "The number of attendee places for an event that remain unallocated.",
"type": "integer"
},
"review": {
"description": "A review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"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": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"startDate": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The start date and time of the item (in ISO 8601 date format)."
},
"subEvent": {
"description": "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"subEvents": {
"description": "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"superEvent": {
"description": "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"translator": {
"description": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"typicalAgeRange": {
"description": "The typical expected age range, e.g. '7-9', '11-'.",
"type": "string"
},
"workFeatured": {
"description": "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).",
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
},
"workPerformed": {
"description": "A work performed in some event, for example a play performed in a TheaterEvent.",
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
}
},
"title": "Event",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | 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": "ReactAction.schema.json",
"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",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "AgreeAction"
}
},
"required": [
"@type"
],
"title": "AgreeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/InteractAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/InteractAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Action.schema.json",
"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 interacting with another person or organization.",
"format": "http://schema.org/InteractAction",
"title": "InteractAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/BusStop.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:BusStop",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:CivicStructure",
"description": "A public structure, such as a town hall or concert hall."
}
],
"description": "A bus stop.",
"title": "BusStop",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/ComicSeries.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:ComicSeries",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Periodical",
"description": "A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html)."
}
],
"description": "A sequential publication of comic stories under a\n \tunifying title, for example \"The Amazing Spider-Man\" or \"Groo the\n \tWanderer\".",
"title": "ComicSeries",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/LiteraryEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LiteraryEvent",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Event",
"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: Literary event.",
"format": "http://schema.org/LiteraryEvent",
"title": "LiteraryEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Schedule.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Schedule",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Intangible",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A schedule defines a repeating time period used to describe a regularly occurring [[Event]]. At a minimum a schedule will specify [[repeatFrequency]] which describes the interval between occurences of the event. Additional information can be provided to specify the schedule more precisely.\n This includes identifying the day(s) of the week or month when the recurring event will take place, in addition to its start and end time. Schedules may also\n have start and end dates to indicate when they are active, e.g. to define a limited calendar of events.",
"properties": {
"byDay": {
"description": "Defines the day(s) of the week on which a recurring [[Event]] takes place. May be specified using either [[DayOfWeek]], or alternatively [[Text]] conforming to iCal's syntax for byDay recurrence rules.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:DayOfWeek"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:DayOfWeek"
}
]
},
"type": "array"
}
]
},
"byMonth": {
"description": "Defines the month(s) of the year on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-12. January is 1.",
"oneOf": [
{
"type": "integer"
},
{
"items": {
"type": "integer"
},
"type": "array"
}
]
},
"byMonthDay": {
"description": "Defines the day(s) of the month on which a recurring [[Event]] takes place. Specified as an [[Integer]] between 1-31.",
"oneOf": [
{
"type": "integer"
},
{
"items": {
"type": "integer"
},
"type": "array"
}
]
},
"byMonthWeek": {
"description": "Defines the week(s) of the month on which a recurring Event takes place. Specified as an Integer between 1-5. For clarity, byMonthWeek is best used in conjunction with byDay to indicate concepts like the first and third Mondays of a month.",
"oneOf": [
{
"type": "integer"
},
{
"items": {
"type": "integer"
},
"type": "array"
}
]
},
"duration": {
"$comment": "https://schema.org/Duration",
"description": "The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).",
"type": "string"
},
"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](http://en.wikipedia.org/wiki/ISO_8601))."
},
"endTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"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."
},
"exceptDate": {
"description": "Defines a [[Date]] or [[DateTime]] during which a scheduled [[Event]] will not take place. The property allows exceptions to\n a [[Schedule]] to be specified. If an exception is specified as a [[DateTime]] then only the event that would have started at that specific date and time\n should be excluded from the schedule. If an exception is specified as a [[Date]] then any event that is scheduled for that 24 hour period should be\n excluded from the schedule. This allows a whole day to be excluded from the schedule without having to itemise every scheduled event.",
"oneOf": [
{
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
]
},
"type": "array"
}
]
},
"repeatCount": {
"description": "Defines the number of times a recurring [[Event]] will take place",
"oneOf": [
{
"type": "integer"
},
{
"items": {
"type": "integer"
},
"type": "array"
}
]
},
"repeatFrequency": {
"description": "Defines the frequency at which [[Event]]s will occur according to a schedule [[Schedule]]. The intervals between\n events should be defined as a [[Duration]] of time.",
"oneOf": [
{
"anyOf": [
{
"$comment": "https://schema.org/Duration",
"type": "string"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"$comment": "https://schema.org/Duration",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
},
"scheduleTimezone": {
"description": "Indicates the timezone for which the time(s) indicated in the [[Schedule]] are given. The value provided should be among those listed in the IANA Time Zone Database.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"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](http://en.wikipedia.org/wiki/ISO_8601))."
},
"startTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"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."
}
},
"title": "Schedule",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/VideoGallery.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:VideoGallery",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:MediaGallery",
"description": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia."
}
],
"description": "Web page type: Video gallery page.",
"title": "VideoGallery",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/URL.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/URL",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Text.schema.json",
"description": "Data type: Text."
}
],
"description": "Data type: URL.",
"format": "http://schema.org/URL",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "URL"
}
},
"required": [
"@type"
],
"title": "URL",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Game.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Game",
"$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": "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.",
"format": "http://schema.org/Game",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Game"
},
"characterAttribute": {
"description": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
},
"gameItem": {
"description": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
},
"gameLocation": {
"description": "Real or fictional location of the game (or part of game).",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
}
]
},
"type": "array"
},
"numberOfPlayers": {
"description": "Indicate how many people can play this game (minimum, maximum, or range).",
"items": {
"$ref": "QuantitativeValue.schema.json"
},
"type": "array"
},
"quest": {
"$ref": "Thing.schema.json",
"description": "The task that a player-controlled character, or group of characters may complete in order to gain a reward."
}
},
"required": [
"@type"
],
"title": "Game",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/ProgramMembership.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ProgramMembership",
"$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": "Used to describe membership in a loyalty programs (e.g. \"StarAliance\"), traveler clubs (e.g. \"AAA\"), purchase clubs (\"Safeway Club\"), etc.",
"format": "http://schema.org/ProgramMembership",
"properties": {
"hostingOrganization": {
"$ref": "Organization.schema.json",
"description": "The organization (airline, travelers' club, etc.) the membership is made with."
},
"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"
},
"members": {
"description": "A member of this organization.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"membershipNumber": {
"description": "A unique identifier for the membership.",
"items": {
"type": "string"
},
"type": "array"
},
"programName": {
"description": "The program providing the membership.",
"type": "string"
}
},
"title": "ProgramMembership",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | schemas/Ticket.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Ticket",
"$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": "Used to describe a ticket to an event, a flight, a bus ride, etc.",
"format": "http://schema.org/Ticket",
"properties": {
"dateIssued": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date the ticket was issued."
},
"issuedBy": {
"$ref": "Organization.schema.json",
"description": "The organization issuing the ticket or permit."
},
"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"
},
"ticketNumber": {
"description": "The unique identifier for the ticket.",
"type": "string"
},
"ticketToken": {
"description": "Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
},
"ticketedSeat": {
"$ref": "Seat.schema.json",
"description": "The seat associated with the ticket."
},
"totalPrice": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
},
{
"$ref": "PriceSpecification.schema.json"
}
],
"description": "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\n\nUsage guidelines:\n\n\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"
},
"underName": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The person or organization the reservation or ticket is for."
}
},
"title": "Ticket",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/BusinessAudience.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BusinessAudience",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Audience.schema.json",
"description": "Intended audience for an item, i.e. the group for whom the item was created."
}
],
"description": "A set of characteristics belonging to businesses, e.g. who compose an item's target audience.",
"format": "http://schema.org/BusinessAudience",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "BusinessAudience"
},
"numberOfEmployees": {
"$ref": "QuantitativeValue.schema.json",
"description": "The number of employees in an organization e.g. business."
},
"yearlyRevenue": {
"$ref": "QuantitativeValue.schema.json",
"description": "The size of the business in annual revenue."
},
"yearsInOperation": {
"$ref": "QuantitativeValue.schema.json",
"description": "The age of the business."
}
},
"required": [
"@type"
],
"title": "BusinessAudience",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/GeoCircle.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/GeoCircle",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "GeoShape.schema.json",
"description": "The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points."
}
],
"description": "A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape\n it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.\n The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.",
"format": "http://schema.org/GeoCircle",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "GeoCircle"
},
"geoMidpoint": {
"description": "Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle.",
"oneOf": [
{
"$ref": "GeoCoordinates.schema.json"
},
{
"items": {
"$ref": "GeoCoordinates.schema.json"
},
"type": "array"
}
]
},
"geoRadius": {
"description": "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).",
"oneOf": [
{
"anyOf": [
{
"type": "number"
},
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"type": "number"
},
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "GeoCircle",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/UserPageVisits.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/UserPageVisits",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "UserInteraction.schema.json",
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment."
}
],
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment.",
"format": "http://schema.org/UserPageVisits",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "UserPageVisits"
}
},
"required": [
"@type"
],
"title": "UserPageVisits",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Winery.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Winery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "FoodEstablishment.schema.json",
"description": "A food-related business."
}
],
"description": "A winery.",
"format": "http://schema.org/Winery",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Winery"
}
},
"required": [
"@type"
],
"title": "Winery",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | 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": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "VideoGame"
},
"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"
}
]
},
"cheatCode": {
"description": "Cheat codes to the game.",
"oneOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"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.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"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.",
"oneOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"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.",
"oneOf": [
{
"$ref": "GamePlayMode.schema.json"
},
{
"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."
}
},
"required": [
"@type"
],
"title": "VideoGame",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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": "http://schema.org/PlanAction",
"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",
"title": "ScheduleAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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": {
"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.",
"format": "http://schema.org/Text"
}
},
"title": "Airline",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | 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",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "AmusementPark"
}
},
"required": [
"@type"
],
"title": "AmusementPark",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/EmergencyService.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/EmergencyService",
"$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": "An emergency service, such as a fire station or ER.",
"format": "http://schema.org/EmergencyService",
"title": "EmergencyService",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/MedicalCondition.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:MedicalCondition",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:MedicalEntity",
"description": "The most generic type of entity related to health and the practice of medicine."
}
],
"description": "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.",
"properties": {
"associatedAnatomy": {
"anyOf": [
{
"$ref": "schema:AnatomicalStructure"
},
{
"$ref": "schema:AnatomicalSystem"
},
{
"$ref": "schema:SuperficialAnatomy"
}
],
"description": "The anatomy of the underlying organ system or structures associated with this entity."
},
"differentialDiagnosis": {
"description": "One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient.",
"oneOf": [
{
"$ref": "schema:DDxElement"
},
{
"items": {
"$ref": "schema:DDxElement"
},
"type": "array"
}
]
},
"drug": {
"description": "Specifying a drug or medicine used in a medication procedure.",
"oneOf": [
{
"$ref": "schema:Drug"
},
{
"items": {
"$ref": "schema:Drug"
},
"type": "array"
}
]
},
"epidemiology": {
"description": "The characteristics of associated patients, such as age, gender, race etc.",
"type": "string"
},
"expectedPrognosis": {
"description": "The likely outcome in either the short term or long term of the medical condition.",
"type": "string"
},
"naturalProgression": {
"description": "The expected progression of the condition if it is not treated and allowed to progress naturally.",
"type": "string"
},
"pathophysiology": {
"description": "Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"possibleComplication": {
"description": "A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"possibleTreatment": {
"description": "A possible treatment to address this condition, sign or symptom.",
"oneOf": [
{
"$ref": "schema:MedicalTherapy"
},
{
"items": {
"$ref": "schema:MedicalTherapy"
},
"type": "array"
}
]
},
"primaryPrevention": {
"description": "A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination.",
"oneOf": [
{
"$ref": "schema:MedicalTherapy"
},
{
"items": {
"$ref": "schema:MedicalTherapy"
},
"type": "array"
}
]
},
"riskFactor": {
"description": "A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age, coexisting condition.",
"oneOf": [
{
"$ref": "schema:MedicalRiskFactor"
},
{
"items": {
"$ref": "schema:MedicalRiskFactor"
},
"type": "array"
}
]
},
"secondaryPrevention": {
"description": "A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.",
"oneOf": [
{
"$ref": "schema:MedicalTherapy"
},
{
"items": {
"$ref": "schema:MedicalTherapy"
},
"type": "array"
}
]
},
"signOrSymptom": {
"description": "A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experience of the medical condition.",
"oneOf": [
{
"$ref": "schema:MedicalSignOrSymptom"
},
{
"items": {
"$ref": "schema:MedicalSignOrSymptom"
},
"type": "array"
}
]
},
"stage": {
"$ref": "schema:MedicalConditionStage",
"description": "The stage of the condition, if applicable."
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:EventStatusType"
},
{
"$ref": "schema:MedicalStudyStatus"
}
],
"description": "The status of the study (enumerated)."
},
"typicalTest": {
"description": "A medical test typically performed given this condition.",
"oneOf": [
{
"$ref": "schema:MedicalTest"
},
{
"items": {
"$ref": "schema:MedicalTest"
},
"type": "array"
}
]
}
},
"title": "MedicalCondition",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/BodyOfWater.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BodyOfWater",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Landform.schema.json",
"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 body of water, such as a sea, ocean, or lake.",
"format": "http://schema.org/BodyOfWater",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "BodyOfWater"
}
},
"required": [
"@type"
],
"title": "BodyOfWater",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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": {
"description": "The page on which the work ends; for example \"138\" or \"xvi\".",
"type": "integer"
},
"pageStart": {
"description": "The page on which the work starts; for example \"135\" or \"xiii\".",
"type": "integer"
},
"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\".",
"format": "http://schema.org/Text"
},
"volumeNumber": {
"description": "Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".",
"items": {
"type": "integer"
},
"type": "array"
}
},
"title": "PublicationVolume",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/ListItem.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ListItem",
"$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 list item, e.g. a step in a checklist or how-to description.",
"format": "http://schema.org/ListItem",
"properties": {
"item": {
"description": "An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')\u2019.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
},
"nextItem": {
"description": "A link to the ListItem that follows the current one.",
"items": {
"$ref": "ListItem.schema.json"
},
"type": "array"
},
"position": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The position of an item in a series or sequence of items."
},
"previousItem": {
"description": "A link to the ListItem that preceeds the current one.",
"items": {
"$ref": "ListItem.schema.json"
},
"type": "array"
}
},
"title": "ListItem",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/PropertyValue.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PropertyValue",
"$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 property-value pair, e.g. representing a feature of a product or place. Use the 'name' property for the name of the property. If there is an additional human-readable version of the value, put that into the 'description' property.\n\nAlways use specific schema.org properties when a) they exist and b) you can populate them. Using PropertyValue as a substitute will typically not trigger the same effect as using the original, specific property.",
"format": "http://schema.org/PropertyValue",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "PropertyValue"
},
"maxValue": {
"description": "The upper value of some characteristic or property.",
"type": "number"
},
"minValue": {
"description": "The lower value of some characteristic or property.",
"type": "number"
},
"propertyID": {
"description": "A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be\n(1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific id of the property), or (3)\na URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry).\nStandards bodies should promote a standard prefix for the identifiers of properties from their standards.",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
},
"unitCode": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"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."
},
"unitText": {
"description": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.",
"items": {
"type": "string"
},
"type": "array"
},
"value": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "number"
},
{
"type": "string"
},
{
"$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": {
"anyOf": [
{
"$ref": "Enumeration.schema.json"
},
{
"$ref": "PropertyValue.schema.json"
},
{
"$ref": "QualitativeValue.schema.json"
},
{
"$ref": "QuantitativeValue.schema.json"
},
{
"$ref": "StructuredValue.schema.json"
}
]
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "PropertyValue",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/PaintAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PaintAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CreateAction",
"description": "The act of deliberately creating/producing/generating/building a result out of the agent."
}
],
"description": "The act of producing a painting, typically with paint and canvas as instruments.",
"format": "http://schema.org/PaintAction",
"title": "PaintAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/UserPlusOnes.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:UserPlusOnes",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:UserInteraction",
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]]."
}
],
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
"title": "UserPlusOnes",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/DrugCost.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:DrugCost",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:MedicalEntity",
"description": "The most generic type of entity related to health and the practice of medicine."
}
],
"description": "The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.",
"properties": {
"applicableLocation": {
"$ref": "schema:AdministrativeArea",
"description": "The location in which the status applies."
},
"costCategory": {
"$ref": "schema:DrugCostCategory",
"description": "The category of cost, such as wholesale, retail, reimbursement cap, etc."
},
"costCurrency": {
"description": "The currency (in 3-letter of the drug cost. See: http://en.wikipedia.org/wiki/ISO_4217. ",
"type": "string"
},
"costOrigin": {
"description": "Additional details to capture the origin of the cost data. For example, 'Medicare Part B'.",
"type": "string"
},
"costPerUnit": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
},
{
"$ref": "schema:QualitativeValue"
}
],
"description": "The cost per unit of the drug."
},
"drugUnit": {
"description": "The unit in which the drug is measured, e.g. '5 mg tablet'.",
"type": "string"
}
},
"title": "DrugCost",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Crematorium.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Crematorium",
"$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 crematorium.",
"format": "http://schema.org/Crematorium",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Crematorium"
}
},
"required": [
"@type"
],
"title": "Crematorium",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | 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": "http://schema.org/Product",
"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": "http://schema.org/QuantitativeValue",
"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": "date",
"type": "string"
},
"driveWheelConfiguration": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/DriveWheelConfigurationValue"
}
],
"description": "The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain."
},
"fuelConsumption": {
"$ref": "http://schema.org/QuantitativeValue",
"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": "http://schema.org/QuantitativeValue",
"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": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "http://schema.org/QualitativeValue"
}
],
"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.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"mileageFromOdometer": {
"$ref": "http://schema.org/QuantitativeValue",
"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": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The number or type of airbags in the vehicle."
},
"numberOfAxles": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The number of axles.\n\nTypical unit code(s): C62"
},
"numberOfDoors": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The number of doors.\n\nTypical unit code(s): C62"
},
"numberOfForwardGears": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The total number of forward gears available for the transmission system of the vehicle.\n\nTypical unit code(s): C62"
},
"numberOfPreviousOwners": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"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": "date",
"type": "string"
},
"purchaseDate": {
"description": "The date the item e.g. vehicle was purchased by the current owner.",
"format": "date",
"type": "string"
},
"steeringPosition": {
"$ref": "http://schema.org/SteeringPositionValue",
"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'.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"vehicleEngine": {
"description": "Information about the engine or engines of the vehicle.",
"oneOf": [
{
"$ref": "http://schema.org/EngineSpecification"
},
{
"items": {
"$ref": "http://schema.org/EngineSpecification"
},
"type": "array"
}
]
},
"vehicleIdentificationNumber": {
"description": "The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.",
"type": "string"
},
"vehicleInteriorColor": {
"description": "The color or color combination of the interior of the vehicle.",
"type": "string"
},
"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.",
"type": "string"
},
"vehicleModelDate": {
"description": "The release date of a vehicle model (often used to differentiate versions of the same make and model).",
"format": "date",
"type": "string"
},
"vehicleSeatingCapacity": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"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": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "http://schema.org/QualitativeValue"
}
],
"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 | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | 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": "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 single item within a larger data feed.",
"format": "http://schema.org/DataFeedItem",
"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": "Thing.schema.json"
},
{
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
}
]
}
},
"title": "DataFeedItem",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/GeoCoordinates.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/GeoCoordinates",
"$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": "The geographic coordinates of a place or event.",
"format": "http://schema.org/GeoCoordinates",
"properties": {
"address": {
"$ref": "PostalAddress.schema.json",
"description": "Physical address of the item."
},
"addressCountry": {
"$ref": "Country.schema.json",
"description": "The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code."
},
"elevation": {
"description": "The elevation of a location (WGS 84). Values may be of the form 'NUMBER UNITOFMEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters.",
"format": "http://schema.org/Number"
},
"latitude": {
"description": "The latitude of a location. For example 37.42242 (WGS 84).",
"format": "http://schema.org/Text"
},
"longitude": {
"description": "The longitude of a location. For example -122.08585 (WGS 84).",
"format": "http://schema.org/Number"
},
"postalCode": {
"description": "The postal code. For example, 94043.",
"format": "http://schema.org/Text"
}
},
"title": "GeoCoordinates",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Audience.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Audience",
"$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": "Intended audience for an item, i.e. the group for whom the item was created.",
"format": "http://schema.org/Audience",
"properties": {
"audienceType": {
"description": "The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).",
"type": "string"
},
"geographicArea": {
"$ref": "AdministrativeArea.schema.json",
"description": "The geographic area associated with the audience."
}
},
"title": "Audience",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Question.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Question",
"$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 specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.",
"format": "http://schema.org/Question",
"properties": {
"acceptedAnswer": {
"anyOf": [
{
"$ref": "http://schema.org/Answer"
},
{
"$ref": "http://schema.org/ItemList"
}
],
"description": "The answer(s) that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author."
},
"answerCount": {
"description": "The number of answers this question has received.",
"type": "integer"
},
"downvoteCount": {
"description": "The number of downvotes this question, answer or comment has received from the community.",
"type": "integer"
},
"suggestedAnswer": {
"description": "An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Answer"
},
{
"$ref": "http://schema.org/ItemList"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Answer"
},
{
"$ref": "http://schema.org/ItemList"
}
]
},
"type": "array"
}
]
},
"upvoteCount": {
"description": "The number of upvotes this question, answer or comment has received from the community.",
"type": "integer"
}
},
"title": "Question",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Menu.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Menu",
"$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 structured representation of food or drink items available from a FoodEstablishment.",
"format": "http://schema.org/Menu",
"properties": {
"hasMenuItem": {
"description": "A food or drink item contained in a menu or menu section.",
"oneOf": [
{
"$ref": "http://schema.org/MenuItem"
},
{
"items": {
"$ref": "http://schema.org/MenuItem"
},
"type": "array"
}
]
},
"hasMenuSection": {
"description": "A subgrouping of the menu (by dishes, course, serving time period, etc.).",
"oneOf": [
{
"$ref": "http://schema.org/MenuSection"
},
{
"items": {
"$ref": "http://schema.org/MenuSection"
},
"type": "array"
}
]
}
},
"title": "Menu",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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",
"title": "DislikeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/AggregateRating.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AggregateRating",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Rating.schema.json",
"description": "A rating is an evaluation on a numeric scale, such as 1 to 5 stars."
}
],
"description": "The average rating based on multiple ratings or reviews.",
"format": "http://schema.org/AggregateRating",
"properties": {
"itemReviewed": {
"$ref": "Thing.schema.json",
"description": "The item that is being reviewed/rated."
},
"ratingCount": {
"description": "The count of total number of ratings.",
"type": "integer"
},
"reviewCount": {
"description": "The count of total number of reviews.",
"type": "integer"
}
},
"title": "AggregateRating",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/AudioObject.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AudioObject",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MediaObject.schema.json",
"description": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's)."
}
],
"description": "An audio file.",
"format": "http://schema.org/AudioObject",
"properties": {
"caption": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "MediaObject.schema.json"
}
],
"description": "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the encodingFormat."
},
"transcript": {
"description": "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.",
"type": "string"
}
},
"title": "AudioObject",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/BedDetails.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BedDetails",
"$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 entity holding detailed information about the available bed types, e.g. the quantity of twin beds for a hotel room. For the single case of just one bed of a certain type, you can use bed directly with a text. See also BedType (under development).",
"format": "http://schema.org/BedDetails",
"properties": {
"numberOfBeds": {
"description": "The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.",
"type": "number"
},
"typeOfBed": {
"anyOf": [
{
"$ref": "BedType.schema.json"
},
{
"type": "string"
}
],
"description": "The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity."
}
},
"title": "BedDetails",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/MotorcycleDealer.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MotorcycleDealer",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/AutomotiveBusiness",
"description": "Car repair, sales, or parts."
}
],
"description": "A motorcycle dealer.",
"format": "http://schema.org/MotorcycleDealer",
"title": "MotorcycleDealer",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/SoftwareSourceCode.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SoftwareSourceCode",
"$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": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
"format": "http://schema.org/SoftwareSourceCode",
"properties": {
"codeRepository": {
"description": "Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).",
"oneOf": [
{
"format": "uri",
"type": "string"
},
{
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
}
]
},
"codeSampleType": {
"description": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"programmingLanguage": {
"description": "The computer programming language.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/ComputerLanguage"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/ComputerLanguage"
}
]
},
"type": "array"
}
]
},
"runtime": {
"description": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).",
"type": "string"
},
"runtimePlatform": {
"description": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"sampleType": {
"description": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
"type": "string"
},
"targetProduct": {
"description": "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.",
"oneOf": [
{
"$ref": "http://schema.org/SoftwareApplication"
},
{
"items": {
"$ref": "http://schema.org/SoftwareApplication"
},
"type": "array"
}
]
}
},
"title": "SoftwareSourceCode",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/WarrantyPromise.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WarrantyPromise",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/StructuredValue",
"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 structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.",
"format": "http://schema.org/WarrantyPromise",
"properties": {
"durationOfWarranty": {
"$ref": "http://schema.org/QuantitativeValue",
"description": "The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days."
},
"warrantyScope": {
"$ref": "http://schema.org/WarrantyScope",
"description": "The scope of the warranty promise."
}
},
"title": "WarrantyPromise",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | 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": "ConsumeAction.schema.json",
"description": "The act of ingesting information/resources/food."
}
],
"description": "The act of consuming dynamic/moving visual content.",
"format": "http://schema.org/WatchAction",
"title": "WatchAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/HotelRoom.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HotelRoom",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Room",
"description": "A room is a distinguishable space within a structure, usually separated from other spaces by interior walls. (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Room).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations."
}
],
"description": "A hotel room is a single room in a 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/HotelRoom",
"properties": {
"bed": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/BedDetails"
},
{
"$ref": "http://schema.org/BedType"
}
],
"description": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property."
},
"occupancy": {
"$ref": "http://schema.org/QuantitativeValue",
"description": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person"
}
},
"title": "HotelRoom",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/DanceGroup.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DanceGroup",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/PerformingGroup",
"description": "A performance group, such as a band, an orchestra, or a circus."
}
],
"description": "A dance group\u2014for example, the Alvin Ailey Dance Theater or Riverdance.",
"format": "http://schema.org/DanceGroup",
"title": "DanceGroup",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | 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": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "FoodEstablishment"
},
"acceptsReservations": {
"anyOf": [
{
"type": "boolean"
},
{
"format": "uri",
"type": "string"
},
{
"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": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "Menu.schema.json"
}
]
},
"type": "array"
},
"menu": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "Menu.schema.json"
}
],
"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"
}
},
"required": [
"@type"
],
"title": "FoodEstablishment",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/FlightReservation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/FlightReservation",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Reservation",
"description": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use Offer."
}
],
"description": "A reservation for air travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use Offer.",
"properties": {
"boardingGroup": {
"description": "The airline-specific indicator of boarding order / preference.",
"type": "string"
},
"passengerPriorityStatus": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/QualitativeValue"
}
],
"description": "The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority)."
},
"passengerSequenceNumber": {
"description": "The passenger's sequence number as assigned by the airline.",
"type": "string"
},
"securityScreening": {
"description": "The type of security screening the passenger is subject to.",
"type": "string"
}
},
"title": "FlightReservation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/OrganizationRole.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/OrganizationRole",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Role",
"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."
}
],
"description": "A subclass of Role used to describe roles within organizations.",
"format": "http://schema.org/OrganizationRole",
"properties": {
"numberedPosition": {
"description": "A number associated with a role in an organization, for example, the number on an athlete's jersey.",
"oneOf": [
{
"type": "number"
},
{
"items": {
"type": "number"
},
"type": "array"
}
]
}
},
"title": "OrganizationRole",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/BankOrCreditUnion.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BankOrCreditUnion",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/FinancialService",
"description": "Financial services business."
}
],
"description": "Bank or credit union.",
"format": "http://schema.org/BankOrCreditUnion",
"title": "BankOrCreditUnion",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/Dataset.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Dataset",
"$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 body of structured information describing some topic(s) of interest.",
"format": "http://schema.org/Dataset",
"properties": {
"catalog": {
"description": "A data catalog which contains this dataset.",
"items": {
"$ref": "DataCatalog.schema.json"
},
"type": "array"
},
"datasetTimeInterval": {
"description": "The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).",
"format": "date-time",
"type": "string"
},
"distribution": {
"description": "A downloadable form of this dataset, at a specific location, in a specific format.",
"items": {
"$ref": "DataDownload.schema.json"
},
"type": "array"
},
"includedDataCatalog": {
"description": "A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').",
"items": {
"$ref": "DataCatalog.schema.json"
},
"type": "array"
},
"includedInDataCatalog": {
"description": "A data catalog which contains this dataset.",
"items": {
"$ref": "DataCatalog.schema.json"
},
"type": "array"
},
"issn": {
"description": "The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.",
"type": "string"
}
},
"title": "Dataset",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/MusicEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:MusicEvent",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Event",
"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: Music event.",
"title": "MusicEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/CatholicChurch.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CatholicChurch",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Church",
"description": "A church."
}
],
"description": "A Catholic church.",
"title": "CatholicChurch",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/ListenAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ListenAction",
"$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 audio content.",
"title": "ListenAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Claim.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Claim",
"$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 [[Claim]] in Schema.org represents a specific, factually-oriented claim that could be the [[itemReviewed]] in a [[ClaimReview]]. The content of a claim can be summarized with the [[text]] property. Variations on well known claims can have their common identity indicated via [[sameAs]] links, and summarized with a [[name]]. Ideally, a [[Claim]] description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews.\n\n Beyond [[ClaimReview]], the Claim type can be associated with related creative works - for example a [[ScholarlyArticle]] or [[Question]] might be [[about]] some [[Claim]].\n\n At this time, Schema.org does not define any types of relationship between claims. This is a natural area for future exploration.\n ",
"properties": {
"appearance": {
"description": "Indicates an occurence of a [[Claim]] in some [[CreativeWork]].",
"oneOf": [
{
"$ref": "schema:CreativeWork"
},
{
"items": {
"$ref": "schema:CreativeWork"
},
"type": "array"
}
]
},
"claimInterpreter": {
"description": "For a [[Claim]] interpreted from [[MediaObject]] content\n sed to indicate a claim contained, implied or refined from the content of a [[MediaObject]].",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
"type": "array"
}
]
},
"firstAppearance": {
"description": "Indicates the first known occurence of a [[Claim]] in some [[CreativeWork]].",
"oneOf": [
{
"$ref": "schema:CreativeWork"
},
{
"items": {
"$ref": "schema:CreativeWork"
},
"type": "array"
}
]
}
},
"title": "Claim",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/ConvenienceStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ConvenienceStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A convenience store.",
"format": "http://schema.org/ConvenienceStore",
"title": "ConvenienceStore",
"type": "object"
} | Apache-2.0 | en |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.