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 | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/PerformAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PerformAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PlayAction.schema.json",
"description": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\n\nRelated actions:\n\n\nListenAction: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\nWatchAction: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.\n\n"
}
],
"description": "The act of participating in performance arts.",
"format": "http://schema.org/PerformAction",
"properties": {
"entertainmentBusiness": {
"description": "A sub property of location. The entertainment business where the action occurred.",
"oneOf": [
{
"$ref": "EntertainmentBusiness.schema.json"
},
{
"items": {
"$ref": "EntertainmentBusiness.schema.json"
},
"type": "array"
}
]
}
},
"title": "PerformAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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": "CreativeWork.schema.json",
"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.",
"items": {
"$ref": "MenuItem.schema.json"
},
"type": "array"
},
"hasMenuSection": {
"description": "A subgrouping of the menu (by dishes, course, serving time period, etc.).",
"items": {
"$ref": "MenuSection.schema.json"
},
"type": "array"
}
},
"title": "Menu",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Table.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Table",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "WebPageElement.schema.json",
"description": "A web page element, like a table or an image."
}
],
"description": "A table on a Web page.",
"format": "http://schema.org/Table",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Table"
}
},
"required": [
"@type"
],
"title": "Table",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/MusicAlbum.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MusicAlbum",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MusicPlaylist.schema.json",
"description": "A collection of music tracks in playlist form."
}
],
"description": "A collection of music tracks.",
"format": "http://schema.org/MusicAlbum",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "MusicAlbum"
},
"albumProductionType": {
"description": "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.",
"oneOf": [
{
"$ref": "MusicAlbumProductionType.schema.json"
},
{
"items": {
"$ref": "MusicAlbumProductionType.schema.json"
},
"type": "array"
}
]
},
"albumRelease": {
"description": "A release of this album.",
"oneOf": [
{
"$ref": "MusicRelease.schema.json"
},
{
"items": {
"$ref": "MusicRelease.schema.json"
},
"type": "array"
}
]
},
"albumReleaseType": {
"$ref": "MusicAlbumReleaseType.schema.json",
"description": "The kind of release which this album is: single, EP or album."
},
"byArtist": {
"anyOf": [
{
"$ref": "MusicGroup.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The artist that performed this album or recording."
}
},
"required": [
"@type"
],
"title": "MusicAlbum",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/MonetaryAmount.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MonetaryAmount",
"$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 monetary value or range. This type can be used to describe an amount of money such as $50 USD, or a range as in describing a bank account being suitable for a balance between \u00a31,000 and \u00a31,000,000 GBP, or the value of a salary, etc. It is recommended to use PriceSpecification Types to describe the price of an Offer, Invoice, etc.",
"format": "http://schema.org/MonetaryAmount",
"properties": {
"currency": {
"description": "The currency in which the monetary amount is expressed.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".",
"format": "http://schema.org/Text"
},
"maxValue": {
"description": "The upper value of some characteristic or property.",
"format": "http://schema.org/Number"
},
"minValue": {
"description": "The lower value of some characteristic or property.",
"format": "http://schema.org/Number"
},
"validFrom": {
"description": "The date when the item becomes valid.",
"format": "http://schema.org/Date"
},
"validThrough": {
"description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.",
"format": "http://schema.org/Date"
},
"value": {
"$ref": "StructuredValue.schema.json",
"description": "The value of the quantitative value or property value node.\n\n\nFor QuantitativeValue and MonetaryAmount, the recommended type for values is 'Number'.\nFor PropertyValue, it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n"
}
},
"title": "MonetaryAmount",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | 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": "ConsumeAction.schema.json",
"description": "The act of ingesting information/resources/food."
}
],
"description": "The act of consuming audio content.",
"format": "http://schema.org/ListenAction",
"title": "ListenAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/GolfCourse.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/GolfCourse",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/SportsActivityLocation",
"description": "A sports location, such as a playing field."
}
],
"description": "A golf course.",
"format": "http://schema.org/GolfCourse",
"title": "GolfCourse",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/DrawAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DrawAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreateAction.schema.json",
"description": "The act of deliberately creating/producing/generating/building a result out of the agent."
}
],
"description": "The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.",
"format": "http://schema.org/DrawAction",
"title": "DrawAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/GiveAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/GiveAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "TransferAction.schema.json",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another."
}
],
"description": "The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.\n\nRelated actions:\n\n\nTakeAction: Reciprocal of GiveAction.\nSendAction: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn't mean I'm giving it to you).\n\n",
"format": "http://schema.org/GiveAction",
"properties": {
"recipient": {
"description": "A sub property of participant. The participant who is at the receiving end of the action.",
"items": {
"anyOf": [
{
"$ref": "Audience.schema.json"
},
{
"$ref": "ContactPoint.schema.json"
},
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
},
"title": "GiveAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/MediaReviewItem.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:MediaReviewItem",
"$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": "Represents an item or group of closely related items treated as a unit for the sake of evaluation in a [[MediaReview]]. Authorship etc. apply to the items rather than to the curation/grouping or reviewing party.",
"properties": {
"mediaItemAppearance": {
"description": "In the context of a [[MediaReview]], indicates specific media item(s) that are grouped using a [[MediaReviewItem]].",
"oneOf": [
{
"$ref": "schema:MediaObject"
},
{
"items": {
"$ref": "schema:MediaObject"
},
"type": "array"
}
]
}
},
"title": "MediaReviewItem",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/HighSchool.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HighSchool",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/EducationalOrganization",
"description": "An educational organization."
}
],
"description": "A high school.",
"format": "http://schema.org/HighSchool",
"title": "HighSchool",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/CheckInAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:CheckInAction",
"$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 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* [[CheckOutAction]]: The antonym of CheckInAction.\\n* [[ArriveAction]]: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\\n* [[ConfirmAction]]: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence.",
"title": "CheckInAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/ComputerLanguage.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ComputerLanguage",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Intangible",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "This type covers computer programming languages such as Scheme and Lisp, as well as other language-like computer representations. Natural languages are best represented with the Language type.",
"format": "http://schema.org/ComputerLanguage",
"title": "ComputerLanguage",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/RejectAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:RejectAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:AllocateAction",
"description": "The act of organizing tasks/objects/events by associating resources to it."
}
],
"description": "The act of rejecting to/adopting an object.\\n\\nRelated actions:\\n\\n* [[AcceptAction]]: The antonym of RejectAction.",
"title": "RejectAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/ReactAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ReactAction",
"$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 responding instinctively and emotionally to an object, expressing a sentiment.",
"format": "http://schema.org/ReactAction",
"title": "ReactAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Person.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Person",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"description": "A person (alive, dead, undead, or fictional).",
"format": "http://schema.org/Person",
"properties": {
"additionalName": {
"description": "An additional name for a Person, can be used for a middle name.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"address": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "PostalAddress.schema.json"
}
],
"description": "Physical address of the item."
},
"affiliation": {
"description": "An organization that this person is affiliated with. For example, a school/university, a club, or a team.",
"oneOf": [
{
"$ref": "Organization.schema.json"
},
{
"items": {
"$ref": "Organization.schema.json"
},
"type": "array"
}
]
},
"alumniOf": {
"description": "An organization that the person is an alumni of.",
"oneOf": [
{
"anyOf": [
{
"$ref": "EducationalOrganization.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "EducationalOrganization.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
}
]
},
"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"
}
]
},
"birthDate": {
"description": "Date of birth.",
"format": "date",
"type": "string"
},
"birthPlace": {
"$ref": "Place.schema.json",
"description": "The place where the person was born."
},
"brand": {
"anyOf": [
{
"$ref": "Brand.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person."
},
"children": {
"description": "A child of the person.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"colleague": {
"description": "A colleague of the person.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"colleagues": {
"description": "A colleague of the person.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"contactPoint": {
"description": "A contact point for a person or organization.",
"oneOf": [
{
"$ref": "ContactPoint.schema.json"
},
{
"items": {
"$ref": "ContactPoint.schema.json"
},
"type": "array"
}
]
},
"contactPoints": {
"description": "A contact point for a person or organization.",
"oneOf": [
{
"$ref": "ContactPoint.schema.json"
},
{
"items": {
"$ref": "ContactPoint.schema.json"
},
"type": "array"
}
]
},
"deathDate": {
"description": "Date of death.",
"format": "date",
"type": "string"
},
"deathPlace": {
"$ref": "Place.schema.json",
"description": "The place where the person died."
},
"duns": {
"description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
"type": "string"
},
"email": {
"description": "Email address.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"familyName": {
"description": "Family name. In the U.S., the last name of an Person. This can be used along with givenName instead of the name property.",
"type": "string"
},
"faxNumber": {
"description": "The fax number.",
"type": "string"
},
"follows": {
"description": "The most generic uni-directional social relation.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"givenName": {
"description": "Given name. In the U.S., the first name of a Person. This can be used along with familyName instead of the name property.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"globalLocationNumber": {
"description": "The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.",
"type": "string"
},
"hasOccupation": {
"$ref": "Occupation.schema.json",
"description": "The Person's occupation. For past professions, use Role for expressing dates."
},
"hasOfferCatalog": {
"description": "Indicates an OfferCatalog listing for this Organization, Person, or Service.",
"oneOf": [
{
"$ref": "OfferCatalog.schema.json"
},
{
"items": {
"$ref": "OfferCatalog.schema.json"
},
"type": "array"
}
]
},
"hasPOS": {
"description": "Points-of-Sales operated by the organization or person.",
"oneOf": [
{
"$ref": "Place.schema.json"
},
{
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
}
]
},
"height": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The height of the item."
},
"homeLocation": {
"description": "A contact location for a person's residence.",
"oneOf": [
{
"anyOf": [
{
"$ref": "ContactPoint.schema.json"
},
{
"$ref": "Place.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "ContactPoint.schema.json"
},
{
"$ref": "Place.schema.json"
}
]
},
"type": "array"
}
]
},
"honorificPrefix": {
"description": "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"honorificSuffix": {
"description": "An honorific suffix preceding a Person's name such as M.D. /PhD/MSCSW.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"interactionStatistic": {
"$ref": "InteractionCounter.schema.json",
"description": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used."
},
"isicV4": {
"description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
"type": "string"
},
"knows": {
"$ref": "Person.schema.json",
"description": "The most generic bi-directional social/work relation."
},
"makesOffer": {
"description": "A pointer to products or services offered by the organization or person.",
"oneOf": [
{
"$ref": "Offer.schema.json"
},
{
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
}
]
},
"memberOf": {
"description": "An Organization (or ProgramMembership) to which this Person or Organization belongs.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "ProgramMembership.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "ProgramMembership.schema.json"
}
]
},
"type": "array"
}
]
},
"naics": {
"description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
"type": "string"
},
"nationality": {
"description": "Nationality of the person.",
"oneOf": [
{
"$ref": "Country.schema.json"
},
{
"items": {
"$ref": "Country.schema.json"
},
"type": "array"
}
]
},
"netWorth": {
"anyOf": [
{
"$ref": "MonetaryAmount.schema.json"
},
{
"$ref": "PriceSpecification.schema.json"
}
],
"description": "The total financial value of the person as calculated by subtracting assets from liabilities."
},
"owns": {
"description": "Products owned by the organization or person.",
"oneOf": [
{
"anyOf": [
{
"$ref": "OwnershipInfo.schema.json"
},
{
"$ref": "Product.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "OwnershipInfo.schema.json"
},
{
"$ref": "Product.schema.json"
}
]
},
"type": "array"
}
]
},
"parent": {
"description": "A parent of this person.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"parents": {
"description": "A parents of the person.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"performerIn": {
"description": "Event that this person is a performer or participant in.",
"oneOf": [
{
"$ref": "Event.schema.json"
},
{
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
]
},
"publishingPrinciples": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
}
],
"description": "The publishingPrinciples property indicates (typically via URL) a document describing the editorial principles of an Organization (or individual e.g. a Person writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a CreativeWork (e.g. NewsArticle) the principles are those of the party primarily responsible for the creation of the CreativeWork.\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a funder) can be expressed using schema.org terminology."
},
"relatedTo": {
"$ref": "Person.schema.json",
"description": "The most generic familial relation."
},
"seeks": {
"description": "A pointer to products or services sought by the organization or person (demand).",
"oneOf": [
{
"$ref": "Demand.schema.json"
},
{
"items": {
"$ref": "Demand.schema.json"
},
"type": "array"
}
]
},
"sibling": {
"description": "A sibling of the person.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"siblings": {
"description": "A sibling of the person.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.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.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"spouse": {
"$ref": "Person.schema.json",
"description": "The person's spouse."
},
"taxID": {
"description": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
"type": "string"
},
"telephone": {
"description": "The telephone number.",
"type": "string"
},
"vatID": {
"description": "The Value-added Tax ID of the organization or person.",
"type": "string"
},
"weight": {
"$ref": "QuantitativeValue.schema.json",
"description": "The weight of the product or person."
},
"workLocation": {
"description": "A contact location for a person's place of work.",
"oneOf": [
{
"anyOf": [
{
"$ref": "ContactPoint.schema.json"
},
{
"$ref": "Place.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "ContactPoint.schema.json"
},
{
"$ref": "Place.schema.json"
}
]
},
"type": "array"
}
]
},
"worksFor": {
"description": "Organizations that the person works for.",
"oneOf": [
{
"$ref": "Organization.schema.json"
},
{
"items": {
"$ref": "Organization.schema.json"
},
"type": "array"
}
]
}
},
"title": "Person",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/Offer.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Offer",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "An offer to transfer some rights to an item or to provide a service \u2014 for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\n\nNote: As the businessFunction property, which identifies the form of offer (e.g. sell, lease, repair, dispose), defaults to http://purl.org/goodrelations/v1#Sell; an Offer without a defined businessFunction value can be assumed to be an offer to sell.\n\nFor GTIN-related fields, see Check Digit calculator and validation guide from GS1.",
"format": "http://schema.org/Offer",
"properties": {
"acceptedPaymentMethod": {
"anyOf": [
{
"$ref": "LoanOrCredit.schema.json"
},
{
"$ref": "PaymentMethod.schema.json"
}
],
"description": "The payment method(s) accepted by seller for this offer."
},
"addOn": {
"description": "An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).",
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
},
"advanceBookingRequirement": {
"$ref": "QuantitativeValue.schema.json",
"description": "The amount of time that is required between accepting the offer and the actual usage of the resource or service."
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"areaServed": {
"anyOf": [
{
"$ref": "AdministrativeArea.schema.json"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "GeoShape.schema.json"
},
{
"type": "string"
}
],
"description": "The geographic area where a service or offered item is provided."
},
"availability": {
"$ref": "ItemAvailability.schema.json",
"description": "The availability of this item\u2014for example In stock, Out of stock, Pre-order, etc."
},
"availabilityEnds": {
"anyOf": [
{
"format": "time",
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The end of the availability of the product or service included in the offer."
},
"availabilityStarts": {
"anyOf": [
{
"format": "time",
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The beginning of the availability of the product or service included in the offer."
},
"availableAtOrFrom": {
"$ref": "Place.schema.json",
"description": "The place(s) from which the offer can be obtained (e.g. store locations)."
},
"availableDeliveryMethod": {
"$ref": "DeliveryMethod.schema.json",
"description": "The delivery method(s) available for this offer."
},
"businessFunction": {
"$ref": "BusinessFunction.schema.json",
"description": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell."
},
"category": {
"description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
"items": {
"oneOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
},
"deliveryLeadTime": {
"$ref": "QuantitativeValue.schema.json",
"description": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup."
},
"eligibleCustomerType": {
"$ref": "BusinessEntityType.schema.json",
"description": "The type(s) of customers for which the given offer is valid."
},
"eligibleDuration": {
"$ref": "QuantitativeValue.schema.json",
"description": "The duration for which the given offer is valid."
},
"eligibleQuantity": {
"$ref": "QuantitativeValue.schema.json",
"description": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity."
},
"eligibleRegion": {
"anyOf": [
{
"$ref": "Place.schema.json"
},
{
"$ref": "GeoShape.schema.json"
},
{
"type": "string"
}
],
"description": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\n\nSee also ineligibleRegion."
},
"eligibleTransactionVolume": {
"$ref": "PriceSpecification.schema.json",
"description": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount."
},
"gtin12": {
"description": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin13": {
"description": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin14": {
"description": "The GTIN-14 code of the product, or the product to which the offer refers. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin8": {
"description": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.",
"type": "string"
},
"includesObject": {
"description": "This links to a node or nodes indicating the exact quantity of the products included in the offer.",
"items": {
"$ref": "TypeAndQuantityNode.schema.json"
},
"type": "array"
},
"inventoryLevel": {
"$ref": "QuantitativeValue.schema.json",
"description": "The current approximate inventory level for the item or items."
},
"itemCondition": {
"description": "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.",
"items": {
"$ref": "OfferItemCondition.schema.json"
},
"type": "array"
},
"itemOffered": {
"anyOf": [
{
"$ref": "Trip.schema.json"
},
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "AggregateOffer.schema.json"
},
{
"$ref": "Event.schema.json"
},
{
"$ref": "Service.schema.json"
},
{
"$ref": "MenuItem.schema.json"
},
{
"$ref": "Product.schema.json"
}
],
"description": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using businessFunction, e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer."
},
"mpn": {
"description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
"type": "string"
},
"offeredBy": {
"description": "A pointer to the organization or person making the offer.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"price": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\n\nUsage guidelines:\n\n\nUse the priceCurrency property (with standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\") instead of including ambiguous symbols such as '$' in the value.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\nNote that both RDFa and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n\n"
},
"priceCurrency": {
"description": "The currency of the price, or a price component when attached to PriceSpecification and its subtypes.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".",
"type": "string"
},
"priceSpecification": {
"description": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.",
"items": {
"$ref": "PriceSpecification.schema.json"
},
"type": "array"
},
"priceValidUntil": {
"description": "The date after which the price is no longer available.",
"format": "date",
"type": "string"
},
"review": {
"description": "A review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"reviews": {
"description": "Review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"seller": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider."
},
"serialNumber": {
"description": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
"type": "string"
},
"sku": {
"description": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
"type": "string"
},
"validFrom": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The date when the item becomes valid."
},
"validThrough": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours."
},
"warranty": {
"$ref": "WarrantyPromise.schema.json",
"description": "The warranty promise(s) included in the offer."
}
},
"title": "Offer",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/WarrantyScope.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:WarrantyScope",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#Labor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\\n* http://purl.org/goodrelations/v1#PartsAndLabor-PickUp\n ",
"title": "WarrantyScope",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c | 2020-05-13T21:31:46 | schemas/CookAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CookAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreateAction.schema.json",
"description": "The act of deliberately creating/producing/generating/building a result out of the agent."
}
],
"description": "The act of producing/preparing food.",
"format": "http://schema.org/CookAction",
"properties": {
"foodEstablishment": {
"description": "A sub property of location. The specific food establishment where the action occurred.",
"items": {
"anyOf": [
{
"$ref": "FoodEstablishment.schema.json"
},
{
"$ref": "Place.schema.json"
}
]
},
"type": "array"
},
"foodEvent": {
"description": "A sub property of location. The specific food event where the action occurred.",
"items": {
"$ref": "FoodEvent.schema.json"
},
"type": "array"
},
"recipe": {
"description": "A sub property of instrument. The recipe/instructions used to perform the action.",
"items": {
"$ref": "Recipe.schema.json"
},
"type": "array"
}
},
"title": "CookAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/TransferAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TransferAction",
"$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 transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.",
"format": "http://schema.org/TransferAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "TransferAction"
},
"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": "TransferAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/CheckoutPage.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CheckoutPage",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "WebPage.schema.json",
"description": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page."
}
],
"description": "Web page type: Checkout page.",
"format": "http://schema.org/CheckoutPage",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "CheckoutPage"
}
},
"required": [
"@type"
],
"title": "CheckoutPage",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/BarOrPub.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BarOrPub",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "FoodEstablishment.schema.json",
"description": "A food-related business."
}
],
"description": "A bar or pub.",
"format": "http://schema.org/BarOrPub",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "BarOrPub"
}
},
"required": [
"@type"
],
"title": "BarOrPub",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/ResearchProject.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:ResearchProject",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Project",
"description": "An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim.\nUse properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures. \n "
}
],
"description": "A Research project.",
"title": "ResearchProject",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/DeleteAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DeleteAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "UpdateAction.schema.json",
"description": "The act of managing by changing/editing the state of the object."
}
],
"description": "The act of editing a recipient by removing one of its objects.",
"format": "http://schema.org/DeleteAction",
"title": "DeleteAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/RadioClip.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/RadioClip",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Clip.schema.json",
"description": "A short TV or radio program or a segment/part of a program."
}
],
"description": "A short radio program or a segment/part of a radio program.",
"format": "http://schema.org/RadioClip",
"title": "RadioClip",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | schemas/ImageObject.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ImageObject",
"$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 image file.",
"format": "http://schema.org/ImageObject",
"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."
},
"exifData": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "PropertyValue.schema.json"
}
],
"description": "exif data for this object."
},
"representativeOfPage": {
"description": "Indicates whether this image is representative of the content of the page.",
"type": "boolean"
},
"thumbnail": {
"$ref": "ImageObject.schema.json",
"description": "Thumbnail image for an image or video."
}
},
"title": "ImageObject",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Room.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Room",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Accommodation",
"description": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations."
}
],
"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.",
"format": "http://schema.org/Room",
"title": "Room",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/ActivateAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ActivateAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "ControlAction.schema.json",
"description": "An agent controls a device or application."
}
],
"description": "The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight).",
"format": "http://schema.org/ActivateAction",
"title": "ActivateAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/ExerciseGym.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ExerciseGym",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/SportsActivityLocation",
"description": "A sports location, such as a playing field."
}
],
"description": "A gym.",
"title": "ExerciseGym",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | schemas/Organization.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Organization",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"description": "An organization such as a school, NGO, corporation, club, etc.",
"format": "http://schema.org/Organization",
"properties": {
"address": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "PostalAddress.schema.json"
}
],
"description": "Physical address of the item."
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"alumni": {
"description": "Alumni of an organization.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"areaServed": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "AdministrativeArea.schema.json"
},
{
"$ref": "GeoShape.schema.json"
},
{
"$ref": "Place.schema.json"
}
],
"description": "The geographic area where a service or offered item is provided."
},
"award": {
"description": "An award won by or for this item.",
"items": {
"type": "string"
},
"type": "array"
},
"awards": {
"description": "Awards won by or for this item.",
"items": {
"type": "string"
},
"type": "array"
},
"brand": {
"anyOf": [
{
"$ref": "Brand.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person."
},
"contactPoint": {
"description": "A contact point for a person or organization.",
"items": {
"$ref": "ContactPoint.schema.json"
},
"type": "array"
},
"contactPoints": {
"description": "A contact point for a person or organization.",
"items": {
"$ref": "ContactPoint.schema.json"
},
"type": "array"
},
"department": {
"description": "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.",
"items": {
"$ref": "Organization.schema.json"
},
"type": "array"
},
"dissolutionDate": {
"description": "The date that this organization was dissolved.",
"format": "date",
"type": "string"
},
"duns": {
"description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
"type": "string"
},
"email": {
"description": "Email address.",
"items": {
"type": "string"
},
"type": "array"
},
"employee": {
"description": "Someone working for this organization.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"employees": {
"description": "People working for this organization.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"event": {
"description": "Upcoming or past event associated with this place, organization, or action.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"events": {
"description": "Upcoming or past events associated with this place or organization.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"faxNumber": {
"description": "The fax number.",
"type": "string"
},
"founder": {
"description": "A person who founded this organization.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"founders": {
"description": "A person who founded this organization.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"foundingDate": {
"description": "The date that this organization was founded.",
"format": "date",
"type": "string"
},
"foundingLocation": {
"$ref": "Place.schema.json",
"description": "The place where the Organization was founded."
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"globalLocationNumber": {
"description": "The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.",
"type": "string"
},
"hasOfferCatalog": {
"description": "Indicates an OfferCatalog listing for this Organization, Person, or Service.",
"items": {
"$ref": "OfferCatalog.schema.json"
},
"type": "array"
},
"hasPOS": {
"description": "Points-of-Sales operated by the organization or person.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"interactionStatistic": {
"$ref": "InteractionCounter.schema.json",
"description": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used."
},
"isicV4": {
"description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
"type": "string"
},
"legalName": {
"description": "The official name of the organization, e.g. the registered company name.",
"type": "string"
},
"leiCode": {
"description": "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.",
"items": {
"type": "string"
},
"type": "array"
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
}
],
"description": "The location of for example where the event is happening, an organization is located, or where an action takes place."
},
"logo": {
"description": "An associated logo.",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "ImageObject.schema.json"
}
]
},
"type": "array"
},
"makesOffer": {
"description": "A pointer to products or services offered by the organization or person.",
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
},
"member": {
"description": "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"memberOf": {
"description": "An Organization (or ProgramMembership) to which this Person or Organization belongs.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "ProgramMembership.schema.json"
}
]
},
"type": "array"
},
"members": {
"description": "A member of this organization.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"naics": {
"description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
"type": "string"
},
"numberOfEmployees": {
"$ref": "QuantitativeValue.schema.json",
"description": "The number of employees in an organization e.g. business."
},
"owns": {
"description": "Products owned by the organization or person.",
"items": {
"anyOf": [
{
"$ref": "OwnershipInfo.schema.json"
},
{
"$ref": "Product.schema.json"
}
]
},
"type": "array"
},
"parentOrganization": {
"$ref": "Organization.schema.json",
"description": "The larger organization that this organization is a subOrganization of, if any."
},
"publishingPrinciples": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
}
],
"description": "The publishingPrinciples property indicates (typically via URL) a document describing the editorial principles of an Organization (or individual e.g. a Person writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a CreativeWork (e.g. NewsArticle) the principles are those of the party primarily responsible for the creation of the CreativeWork.\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a funder) can be expressed using schema.org terminology."
},
"review": {
"description": "A review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"reviews": {
"description": "Review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"seeks": {
"description": "A pointer to products or services sought by the organization or person (demand).",
"items": {
"$ref": "Demand.schema.json"
},
"type": "array"
},
"serviceArea": {
"anyOf": [
{
"$ref": "AdministrativeArea.schema.json"
},
{
"$ref": "GeoShape.schema.json"
},
{
"$ref": "Place.schema.json"
}
],
"description": "The geographic area where the service is provided."
},
"slogan": {
"description": "A slogan or motto associated with the item.",
"items": {
"type": "string"
},
"type": "array"
},
"sponsor": {
"description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"subOrganization": {
"description": "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.",
"items": {
"$ref": "Organization.schema.json"
},
"type": "array"
},
"taxID": {
"description": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
"type": "string"
},
"telephone": {
"description": "The telephone number.",
"type": "string"
},
"vatID": {
"description": "The Value-added Tax ID of the organization or person.",
"type": "string"
}
},
"title": "Organization",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Library.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Library",
"$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 library.",
"format": "http://schema.org/Library",
"title": "Library",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/WorkersUnion.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WorkersUnion",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Organization",
"description": "An organization such as a school, NGO, corporation, club, etc."
}
],
"description": "A Workers Union (also known as a Labor Union, Labour Union, or Trade Union) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying.",
"format": "http://schema.org/WorkersUnion",
"title": "WorkersUnion",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/RestrictedDiet.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/RestrictedDiet",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A diet restricted to certain foods or preparations for cultural, religious, health or lifestyle reasons.",
"oneOf": [
{
"const": "DiabeticDiet",
"description": "A diet appropriate for people with diabetes."
},
{
"const": "GlutenFreeDiet",
"description": "A diet exclusive of gluten."
},
{
"const": "HalalDiet",
"description": "A diet conforming to Islamic dietary practices."
},
{
"const": "HinduDiet",
"description": "A diet conforming to Hindu dietary practices, in particular, beef-free."
},
{
"const": "KosherDiet",
"description": "A diet conforming to Jewish dietary practices."
},
{
"const": "LowCalorieDiet",
"description": "A diet focused on reduced calorie intake."
},
{
"const": "LowFatDiet",
"description": "A diet focused on reduced fat and cholesterol intake."
},
{
"const": "LowLactoseDiet",
"description": "A diet appropriate for people with lactose intolerance."
},
{
"const": "LowSaltDiet",
"description": "A diet focused on reduced sodium intake."
},
{
"const": "VeganDiet",
"description": "A diet exclusive of all animal products."
},
{
"const": "VegetarianDiet",
"description": "A diet exclusive of animal meat."
}
],
"title": "RestrictedDiet",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/MusicVideoObject.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:MusicVideoObject",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:MediaObject",
"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 music video file.",
"title": "MusicVideoObject",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/FoodEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/FoodEvent",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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: Food event.",
"format": "http://schema.org/FoodEvent",
"title": "FoodEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/SaleEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SaleEvent",
"$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: Sales event.",
"format": "http://schema.org/SaleEvent",
"title": "SaleEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/House.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/House",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Accommodation",
"description": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations."
}
],
"description": "A house is a building or structure that has the ability to be occupied for habitation by humans or other creatures (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/House).",
"properties": {
"numberOfRooms": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue."
}
},
"title": "House",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/DaySpa.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DaySpa",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "HealthAndBeautyBusiness.schema.json",
"description": "Health and beauty."
}
],
"description": "A day spa.",
"format": "http://schema.org/DaySpa",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "DaySpa"
}
},
"required": [
"@type"
],
"title": "DaySpa",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/SportsClub.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SportsClub",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "SportsActivityLocation.schema.json",
"description": "A sports location, such as a playing field."
}
],
"description": "A sports club.",
"format": "http://schema.org/SportsClub",
"title": "SportsClub",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/Organization.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Organization",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"description": "An organization such as a school, NGO, corporation, club, etc.",
"format": "http://schema.org/Organization",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Organization"
},
"address": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "PostalAddress.schema.json"
}
],
"description": "Physical address of the item."
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"alumni": {
"description": "Alumni of an organization.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"areaServed": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "AdministrativeArea.schema.json"
},
{
"$ref": "GeoShape.schema.json"
},
{
"$ref": "Place.schema.json"
}
],
"description": "The geographic area where a service or offered item is provided."
},
"award": {
"description": "An award won by or for this item.",
"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": "Brand.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person."
},
"contactPoint": {
"description": "A contact point for a person or organization.",
"oneOf": [
{
"$ref": "ContactPoint.schema.json"
},
{
"items": {
"$ref": "ContactPoint.schema.json"
},
"type": "array"
}
]
},
"contactPoints": {
"description": "A contact point for a person or organization.",
"oneOf": [
{
"$ref": "ContactPoint.schema.json"
},
{
"items": {
"$ref": "ContactPoint.schema.json"
},
"type": "array"
}
]
},
"department": {
"description": "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.",
"oneOf": [
{
"$ref": "Organization.schema.json"
},
{
"items": {
"$ref": "Organization.schema.json"
},
"type": "array"
}
]
},
"dissolutionDate": {
"description": "The date that this organization was dissolved.",
"format": "date",
"type": "string"
},
"duns": {
"description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
"type": "string"
},
"email": {
"description": "Email address.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"employee": {
"description": "Someone working for this organization.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"employees": {
"description": "People working for this organization.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"event": {
"description": "Upcoming or past event associated with this place, organization, or action.",
"oneOf": [
{
"$ref": "Event.schema.json"
},
{
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
]
},
"events": {
"description": "Upcoming or past events associated with this place or organization.",
"oneOf": [
{
"$ref": "Event.schema.json"
},
{
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
]
},
"faxNumber": {
"description": "The fax number.",
"type": "string"
},
"founder": {
"description": "A person who founded this organization.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"founders": {
"description": "A person who founded this organization.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"foundingDate": {
"description": "The date that this organization was founded.",
"format": "date",
"type": "string"
},
"foundingLocation": {
"$ref": "Place.schema.json",
"description": "The place where the Organization was founded."
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"globalLocationNumber": {
"description": "The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.",
"type": "string"
},
"hasOfferCatalog": {
"description": "Indicates an OfferCatalog listing for this Organization, Person, or Service.",
"oneOf": [
{
"$ref": "OfferCatalog.schema.json"
},
{
"items": {
"$ref": "OfferCatalog.schema.json"
},
"type": "array"
}
]
},
"hasPOS": {
"description": "Points-of-Sales operated by the organization or person.",
"oneOf": [
{
"$ref": "Place.schema.json"
},
{
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
}
]
},
"interactionStatistic": {
"$ref": "InteractionCounter.schema.json",
"description": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used."
},
"isicV4": {
"description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
"type": "string"
},
"legalName": {
"description": "The official name of the organization, e.g. the registered company name.",
"type": "string"
},
"leiCode": {
"description": "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
}
],
"description": "The location of for example where the event is happening, an organization is located, or where an action takes place."
},
"logo": {
"description": "An associated logo.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "ImageObject.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "ImageObject.schema.json"
}
]
},
"type": "array"
}
]
},
"makesOffer": {
"description": "A pointer to products or services offered by the organization or person.",
"oneOf": [
{
"$ref": "Offer.schema.json"
},
{
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
}
]
},
"member": {
"description": "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"memberOf": {
"description": "An Organization (or ProgramMembership) to which this Person or Organization belongs.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "ProgramMembership.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "ProgramMembership.schema.json"
}
]
},
"type": "array"
}
]
},
"members": {
"description": "A member of this organization.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"naics": {
"description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
"type": "string"
},
"numberOfEmployees": {
"$ref": "QuantitativeValue.schema.json",
"description": "The number of employees in an organization e.g. business."
},
"owns": {
"description": "Products owned by the organization or person.",
"oneOf": [
{
"anyOf": [
{
"$ref": "OwnershipInfo.schema.json"
},
{
"$ref": "Product.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "OwnershipInfo.schema.json"
},
{
"$ref": "Product.schema.json"
}
]
},
"type": "array"
}
]
},
"parentOrganization": {
"$ref": "Organization.schema.json",
"description": "The larger organization that this organization is a subOrganization of, if any."
},
"publishingPrinciples": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
}
],
"description": "The publishingPrinciples property indicates (typically via URL) a document describing the editorial principles of an Organization (or individual e.g. a Person writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a CreativeWork (e.g. NewsArticle) the principles are those of the party primarily responsible for the creation of the CreativeWork.\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a funder) can be expressed using schema.org terminology."
},
"review": {
"description": "A review of the item.",
"oneOf": [
{
"$ref": "Review.schema.json"
},
{
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
}
]
},
"reviews": {
"description": "Review of the item.",
"oneOf": [
{
"$ref": "Review.schema.json"
},
{
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
}
]
},
"seeks": {
"description": "A pointer to products or services sought by the organization or person (demand).",
"oneOf": [
{
"$ref": "Demand.schema.json"
},
{
"items": {
"$ref": "Demand.schema.json"
},
"type": "array"
}
]
},
"serviceArea": {
"anyOf": [
{
"$ref": "AdministrativeArea.schema.json"
},
{
"$ref": "GeoShape.schema.json"
},
{
"$ref": "Place.schema.json"
}
],
"description": "The geographic area where the service is provided."
},
"slogan": {
"description": "A slogan or motto associated with the item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"sponsor": {
"description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"subOrganization": {
"description": "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.",
"oneOf": [
{
"$ref": "Organization.schema.json"
},
{
"items": {
"$ref": "Organization.schema.json"
},
"type": "array"
}
]
},
"taxID": {
"description": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
"type": "string"
},
"telephone": {
"description": "The telephone number.",
"type": "string"
},
"vatID": {
"description": "The Value-added Tax ID of the organization or person.",
"type": "string"
}
},
"required": [
"@type"
],
"title": "Organization",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | 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": {
"geoMidpoint": {
"description": "Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle.",
"items": {
"$ref": "GeoCoordinates.schema.json"
},
"type": "array"
},
"geoRadius": {
"description": "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).",
"items": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"type": "number"
},
{
"type": "string"
}
]
},
"type": "array"
}
},
"title": "GeoCircle",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | 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": {
"winner": {
"description": "A sub property of participant. The winner of the action.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
}
},
"title": "LoseAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/DisagreeAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DisagreeAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/ReactAction",
"description": "The act of responding instinctively and emotionally to an object, expressing a sentiment."
}
],
"description": "The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants.",
"format": "http://schema.org/DisagreeAction",
"title": "DisagreeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/LoanOrCredit.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LoanOrCredit",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "FinancialProduct.schema.json",
"description": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry."
}
],
"description": "A financial product for the loaning of an amount of money under agreed terms and charges.",
"format": "http://schema.org/LoanOrCredit",
"properties": {
"amount": {
"anyOf": [
{
"$ref": "MonetaryAmount.schema.json"
},
{
"type": "number"
}
],
"description": "The amount of money."
},
"currency": {
"description": "The currency in which the monetary amount is expressed.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".",
"type": "string"
},
"loanTerm": {
"$ref": "QuantitativeValue.schema.json",
"description": "The duration of the loan or credit agreement."
},
"requiredCollateral": {
"description": "Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.)",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
}
},
"title": "LoanOrCredit",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Role.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Role",
"$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": "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](http://blog.schema.org/2014/06/introducing-role.html).",
"properties": {
"endDate": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601))."
},
"namedPosition": {
"description": "A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
},
"roleName": {
"description": "A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
},
"startDate": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601))."
}
},
"title": "Role",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 836707371bd5157a43e93dd1653717a7f932db13 | 2020-05-11T23:21:31 | schemas/Invoice.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Invoice",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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 statement of the money due for goods or services; a bill.",
"format": "http://schema.org/Invoice",
"properties": {
"accountId": {
"description": "The identifier for the account the payment will be applied to.",
"format": "http://schema.org/Text"
},
"billingPeriod": {
"description": "The time interval used to compute the invoice.",
"format": "https://schema.org/Duration",
"type": "string"
},
"broker": {
"description": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"category": {
"description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
"items": {
"oneOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
},
"confirmationNumber": {
"description": "A number that confirms the given order or payment has been received.",
"format": "http://schema.org/Text"
},
"customer": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "Party placing the order or paying the invoice."
},
"minimumPaymentDue": {
"anyOf": [
{
"$ref": "PriceSpecification.schema.json"
},
{
"$ref": "MonetaryAmount.schema.json"
}
],
"description": "The minimum payment required at this time."
},
"paymentDue": {
"description": "The date that payment is due.",
"format": "http://schema.org/DateTime"
},
"paymentDueDate": {
"description": "The date that payment is due.",
"format": "http://schema.org/DateTime"
},
"paymentMethod": {
"$ref": "PaymentMethod.schema.json",
"description": "The name of the credit card or other method of payment for the order."
},
"paymentMethodId": {
"description": "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).",
"format": "http://schema.org/Text"
},
"paymentStatus": {
"$ref": "PaymentStatusType.schema.json",
"description": "The status of payment; whether the invoice has been paid or not."
},
"provider": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller."
},
"referencesOrder": {
"$ref": "Order.schema.json",
"description": "The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice."
},
"scheduledPaymentDate": {
"description": "The date the invoice is scheduled to be paid.",
"format": "http://schema.org/Date"
},
"totalPaymentDue": {
"anyOf": [
{
"$ref": "PriceSpecification.schema.json"
},
{
"$ref": "MonetaryAmount.schema.json"
}
],
"description": "The total amount due."
}
},
"title": "Invoice",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/EntryPoint.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/EntryPoint",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Intangible",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "An entry point, within some Web-based protocol.",
"format": "http://schema.org/EntryPoint",
"properties": {
"actionApplication": {
"description": "An application that can complete the request.",
"oneOf": [
{
"$ref": "http://schema.org/SoftwareApplication"
},
{
"items": {
"$ref": "http://schema.org/SoftwareApplication"
},
"type": "array"
}
]
},
"actionPlatform": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "The high level platform(s) where the Action can be performed for the given URL. To specify a specific application or operating system instance, use actionApplication."
},
"application": {
"description": "An application that can complete the request.",
"oneOf": [
{
"$ref": "http://schema.org/SoftwareApplication"
},
{
"items": {
"$ref": "http://schema.org/SoftwareApplication"
},
"type": "array"
}
]
},
"contentType": {
"description": "The supported content type(s) for an EntryPoint response.",
"type": "string"
},
"encodingType": {
"description": "The supported encoding type(s) for an EntryPoint request.",
"type": "string"
},
"httpMethod": {
"description": "An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"urlTemplate": {
"description": "An url template (RFC6570) that will be used to construct the target of the execution of the action.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
}
},
"title": "EntryPoint",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Code.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Code",
"$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": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
"format": "http://schema.org/Code",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Code"
}
},
"required": [
"@type"
],
"title": "Code",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/ProductModel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ProductModel",
"$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 datasheet or vendor specification of a product (in the sense of a prototypical description).",
"format": "http://schema.org/ProductModel",
"properties": {
"isVariantOf": {
"description": "A pointer to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive.",
"items": {
"$ref": "ProductModel.schema.json"
},
"type": "array"
},
"predecessorOf": {
"description": "A pointer from a previous, often discontinued variant of the product to its newer variant.",
"items": {
"$ref": "ProductModel.schema.json"
},
"type": "array"
},
"successorOf": {
"description": "A pointer from a newer variant of a product to its previous, often discontinued predecessor.",
"items": {
"$ref": "ProductModel.schema.json"
},
"type": "array"
}
},
"title": "ProductModel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/TravelAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TravelAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MoveAction.schema.json",
"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"
}
],
"description": "The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants.",
"format": "http://schema.org/TravelAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "TravelAction"
},
"distance": {
"description": "The distance travelled, e.g. exercising or travelling.",
"oneOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"items": {
"format": "https://schema.org/Distance",
"type": "string"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "TravelAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | 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": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "VideoObject"
},
"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"
}
]
},
"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.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"musicBy": {
"anyOf": [
{
"$ref": "MusicGroup.schema.json"
},
{
"$ref": "Person.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"
}
},
"required": [
"@type"
],
"title": "VideoObject",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/BlogPosting.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:BlogPosting",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:SocialMediaPosting",
"description": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc."
}
],
"description": "A blog post.",
"title": "BlogPosting",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/MusicAlbum.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MusicAlbum",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MusicPlaylist.schema.json",
"description": "A collection of music tracks in playlist form."
}
],
"description": "A collection of music tracks.",
"format": "http://schema.org/MusicAlbum",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "MusicAlbum"
},
"albumProductionType": {
"description": "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.",
"items": {
"$ref": "MusicAlbumProductionType.schema.json"
},
"type": "array"
},
"albumRelease": {
"description": "A release of this album.",
"items": {
"$ref": "MusicRelease.schema.json"
},
"type": "array"
},
"albumReleaseType": {
"$ref": "MusicAlbumReleaseType.schema.json",
"description": "The kind of release which this album is: single, EP or album."
},
"byArtist": {
"anyOf": [
{
"$ref": "MusicGroup.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The artist that performed this album or recording."
}
},
"required": [
"@type"
],
"title": "MusicAlbum",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/DepositAccount.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DepositAccount",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "BankAccount.schema.json",
"description": "A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest."
},
{
"$ref": "InvestmentOrDeposit.schema.json",
"description": "A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return."
}
],
"description": "A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.",
"format": "http://schema.org/DepositAccount",
"title": "DepositAccount",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c | 2020-05-13T21:31:46 | 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": [
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "HowToSection.schema.json"
},
{
"$ref": "HowToStep.schema.json"
},
{
"type": "string"
}
]
},
"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": [
{
"$ref": "CreativeWork.schema.json"
},
{
"type": "string"
},
{
"$ref": "ItemList.schema.json"
}
]
},
"type": "array"
},
"supply": {
"description": "A sub-property of instrument. A supply consumed when performing instructions or a direction.",
"items": {
"anyOf": [
{
"$ref": "HowToSupply.schema.json"
},
{
"type": "string"
}
]
},
"type": "array"
},
"tool": {
"description": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.",
"items": {
"anyOf": [
{
"$ref": "HowToTool.schema.json"
},
{
"type": "string"
}
]
},
"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 | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | 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.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "LoseAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/RadioSeries.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:RadioSeries",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:CreativeWorkSeries",
"description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike [[ItemList]] which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\\n\\nSpecific subtypes are available for describing [[TVSeries]], [[RadioSeries]], [[MovieSeries]], [[BookSeries]], [[Periodical]] and [[VideoGameSeries]]. In each case, the [[hasPart]] / [[isPartOf]] properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\\n\\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate.\n\t "
}
],
"description": "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.",
"properties": {
"actor": {
"description": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
},
"actors": {
"description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
},
"containsSeason": {
"description": "A season that is part of the media series.",
"oneOf": [
{
"$ref": "schema:CreativeWorkSeason"
},
{
"items": {
"$ref": "schema:CreativeWorkSeason"
},
"type": "array"
}
]
},
"director": {
"$ref": "schema:Person",
"description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip."
},
"directors": {
"description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
},
"episode": {
"description": "An episode of a tv, radio or game media within a series or season.",
"oneOf": [
{
"$ref": "schema:Episode"
},
{
"items": {
"$ref": "schema:Episode"
},
"type": "array"
}
]
},
"episodes": {
"description": "An episode of a TV/radio series or season.",
"oneOf": [
{
"$ref": "schema:Episode"
},
{
"items": {
"$ref": "schema:Episode"
},
"type": "array"
}
]
},
"musicBy": {
"anyOf": [
{
"$ref": "schema:MusicGroup"
},
{
"$ref": "schema:Person"
}
],
"description": "The composer of the soundtrack."
},
"numberOfEpisodes": {
"description": "The number of episodes in this season or series.",
"type": "integer"
},
"numberOfSeasons": {
"description": "The number of seasons in this series.",
"type": "integer"
},
"productionCompany": {
"$ref": "schema:Organization",
"description": "The production company or studio responsible for the item e.g. series, video game, episode etc."
},
"season": {
"description": "A season in a media series.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWorkSeason"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWorkSeason"
}
]
},
"type": "array"
}
]
},
"seasons": {
"description": "A season in a media series.",
"oneOf": [
{
"$ref": "schema:CreativeWorkSeason"
},
{
"items": {
"$ref": "schema:CreativeWorkSeason"
},
"type": "array"
}
]
},
"trailer": {
"$ref": "schema:VideoObject",
"description": "The trailer of a movie or tv/radio series, season, episode, etc."
}
},
"title": "RadioSeries",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Museum.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Museum",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CivicStructure",
"description": "A public structure, such as a town hall or concert hall."
}
],
"description": "A museum.",
"format": "http://schema.org/Museum",
"title": "Museum",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Hotel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Hotel",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/LodgingBusiness",
"description": "A lodging business, such as a motel, hotel, or inn."
}
],
"description": "A hotel is an establishment that provides lodging paid on a short-term basis (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Hotel).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.",
"title": "Hotel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | 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",
"title": "Crematorium",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/ImageObject.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ImageObject",
"$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 image file.",
"format": "http://schema.org/ImageObject",
"properties": {
"caption": {
"anyOf": [
{
"$ref": "MediaObject.schema.json"
},
{
"type": "string"
}
],
"description": "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the encodingFormat."
},
"exifData": {
"anyOf": [
{
"$ref": "PropertyValue.schema.json"
},
{
"type": "string"
}
],
"description": "exif data for this object."
},
"representativeOfPage": {
"description": "Indicates whether this image is representative of the content of the page.",
"type": "boolean"
},
"thumbnail": {
"$ref": "ImageObject.schema.json",
"description": "Thumbnail image for an image or video."
}
},
"title": "ImageObject",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/ReserveAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ReserveAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PlanAction.schema.json",
"description": "The act of planning the execution of an event/task/action/reservation/plan to a future date."
}
],
"description": "Reserving a concrete object.\n\nRelated actions:\n\n\nScheduleAction: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation.\n\n",
"format": "http://schema.org/ReserveAction",
"title": "ReserveAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/DayOfWeek.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DayOfWeek",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\n\nOriginally, URLs from GoodRelations were used (for Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday plus a special entry for PublicHolidays); these have now been integrated directly into schema.org.",
"format": "http://schema.org/DayOfWeek",
"oneOf": [
{
"const": "Friday",
"description": "The day of the week between Thursday and Saturday."
},
{
"const": "Monday",
"description": "The day of the week between Sunday and Tuesday."
},
{
"const": "PublicHolidays",
"description": "This stands for any day that is a public holiday; it is a placeholder for all official public holidays in some particular location. While not technically a \"day of the week\", it can be used with <a class=\"localLink\" href=\"http://schema.org/OpeningHoursSpecification\">OpeningHoursSpecification</a>. In the context of an opening hours specification it can be used to indicate opening hours on public holidays, overriding general opening hours for the day of the week on which a public holiday occurs."
},
{
"const": "Saturday",
"description": "The day of the week between Friday and Sunday."
},
{
"const": "Sunday",
"description": "The day of the week between Saturday and Monday."
},
{
"const": "Thursday",
"description": "The day of the week between Wednesday and Friday."
},
{
"const": "Tuesday",
"description": "The day of the week between Monday and Wednesday."
},
{
"const": "Wednesday",
"description": "The day of the week between Tuesday and Thursday."
}
],
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "DayOfWeek"
}
},
"required": [
"@type"
],
"title": "DayOfWeek",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/ComedyEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ComedyEvent",
"$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: Comedy event.",
"title": "ComedyEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/Course.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Course",
"$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 description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.",
"format": "http://schema.org/Course",
"properties": {
"courseCode": {
"description": "The identifier for the Course used by the course provider (e.g. CS101 or 6.001).",
"type": "string"
},
"coursePrerequisites": {
"description": "Requirements for taking the Course. May be completion of another Course or a textual description like \"permission of instructor\". Requirements may be a pre-requisite competency, referenced using AlignmentObject.",
"items": {
"oneOf": [
{
"$ref": "Course.schema.json"
},
{
"$ref": "AlignmentObject.schema.json"
},
{
"type": "string"
}
]
},
"type": "array"
},
"educationalCredentialAwarded": {
"description": "A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.",
"items": {
"oneOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"hasCourseInstance": {
"description": "An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.",
"items": {
"$ref": "CourseInstance.schema.json"
},
"type": "array"
}
},
"title": "Course",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | 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).",
"oneOf": [
{
"$ref": "Thing.schema.json"
},
{
"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.",
"oneOf": [
{
"$ref": "Thing.schema.json"
},
{
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
}
]
},
"gameLocation": {
"description": "Real or fictional location of the game (or part of game).",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
}
]
},
{
"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).",
"oneOf": [
{
"$ref": "QuantitativeValue.schema.json"
},
{
"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 | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/CreditCard.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CreditCard",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PaymentCard.schema.json",
"description": "A payment method using a credit, debit, store or other card to associate the payment with an account."
},
{
"$ref": "LoanOrCredit.schema.json",
"description": "A financial product for the loaning of an amount of money under agreed terms and charges."
}
],
"description": "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\n\nCommonly used values:\n\n\nhttp://purl.org/goodrelations/v1#AmericanExpress\nhttp://purl.org/goodrelations/v1#DinersClub\nhttp://purl.org/goodrelations/v1#Discover\nhttp://purl.org/goodrelations/v1#JCB\nhttp://purl.org/goodrelations/v1#MasterCard\nhttp://purl.org/goodrelations/v1#VISA\n\n",
"format": "http://schema.org/CreditCard",
"title": "CreditCard",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/BeautySalon.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BeautySalon",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "HealthAndBeautyBusiness.schema.json",
"description": "Health and beauty."
}
],
"description": "Beauty salon.",
"format": "http://schema.org/BeautySalon",
"title": "BeautySalon",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/OnDemandEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/OnDemandEvent",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/PublicationEvent",
"description": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media."
}
],
"description": "A publication event e.g. catch-up TV or radio podcast, during which a program is available on-demand.",
"title": "OnDemandEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/ElementarySchool.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ElementarySchool",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "EducationalOrganization.schema.json",
"description": "An educational organization."
}
],
"description": "An elementary school.",
"format": "http://schema.org/ElementarySchool",
"title": "ElementarySchool",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Season.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Season",
"$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 media season e.g. tv, radio, video game etc.",
"format": "http://schema.org/Season",
"title": "Season",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/LodgingReservation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LodgingReservation",
"$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 lodging at a hotel, motel, inn, etc.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
"properties": {
"checkinTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The earliest someone may check into a lodging establishment."
},
"checkoutTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The latest someone may check out of a lodging establishment."
},
"lodgingUnitDescription": {
"description": "A full description of the lodging unit.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"lodgingUnitType": {
"description": "Textual description of the unit type (including suite vs. room, size of bed, etc.).",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/QualitativeValue"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/QualitativeValue"
}
]
},
"type": "array"
}
]
},
"numAdults": {
"anyOf": [
{
"type": "integer"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The number of adults staying in the unit."
},
"numChildren": {
"anyOf": [
{
"type": "integer"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The number of children staying in the unit."
}
},
"title": "LodgingReservation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/CommunicateAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CommunicateAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "InteractAction.schema.json",
"description": "The act of interacting with another person or organization."
}
],
"description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.",
"format": "http://schema.org/CommunicateAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "CommunicateAction"
},
"about": {
"$ref": "Thing.schema.json",
"description": "The subject matter of the content."
},
"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."
},
"language": {
"description": "A sub property of instrument. The language used on this action.",
"oneOf": [
{
"$ref": "Language.schema.json"
},
{
"items": {
"$ref": "Language.schema.json"
},
"type": "array"
}
]
},
"recipient": {
"description": "A sub property of participant. The participant who is at the receiving end of the action.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Audience.schema.json"
},
{
"$ref": "ContactPoint.schema.json"
},
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Audience.schema.json"
},
{
"$ref": "ContactPoint.schema.json"
},
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "CommunicateAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | 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.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
{
"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.",
"oneOf": [
{
"type": "string"
},
{
"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.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Enumeration.schema.json"
},
{
"$ref": "PropertyValue.schema.json"
},
{
"$ref": "QualitativeValue.schema.json"
},
{
"$ref": "QuantitativeValue.schema.json"
},
{
"$ref": "StructuredValue.schema.json"
}
]
},
{
"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 | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Corporation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Corporation",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Organization",
"description": "An organization such as a school, NGO, corporation, club, etc."
}
],
"description": "Organization: A business 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.",
"type": "string"
}
},
"title": "Corporation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/LendAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LendAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "TransferAction.schema.json",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another."
}
],
"description": "The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\n\nRelated actions:\n\n\nBorrowAction: Reciprocal of LendAction.\n\n",
"format": "http://schema.org/LendAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "LendAction"
},
"borrower": {
"description": "A sub property of participant. The person that borrows the object being lent.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "LendAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/MedicalDevice.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:MedicalDevice",
"$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 object used in a medical capacity, such as to diagnose or treat a patient.",
"properties": {
"adverseOutcome": {
"description": "A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious (resulting in death, disability, or permanent damage; requiring hospitalization; or is otherwise life-threatening or requires immediate medical attention), tag it as a seriouseAdverseOutcome instead.",
"oneOf": [
{
"$ref": "schema:MedicalEntity"
},
{
"items": {
"$ref": "schema:MedicalEntity"
},
"type": "array"
}
]
},
"contraindication": {
"description": "A contraindication for this therapy.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:MedicalContraindication"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:MedicalContraindication"
}
]
},
"type": "array"
}
]
},
"postOp": {
"description": "A description of the postoperative procedures, care, and/or followups for this device.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"preOp": {
"description": "A description of the workup, testing, and other preparations required before implanting this device.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"procedure": {
"description": "A description of the procedure involved in setting up, using, and/or installing the device.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"seriousAdverseOutcome": {
"description": "A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.",
"oneOf": [
{
"$ref": "schema:MedicalEntity"
},
{
"items": {
"$ref": "schema:MedicalEntity"
},
"type": "array"
}
]
}
},
"title": "MedicalDevice",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Hospital.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Hospital",
"$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."
},
{
"$ref": "EmergencyService.schema.json",
"description": "An emergency service, such as a fire station or ER."
},
{
"$ref": "MedicalOrganization.schema.json",
"description": "A medical organization (physical or not), such as hospital, institution or clinic."
}
],
"description": "A hospital.",
"format": "http://schema.org/Hospital",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Hospital"
}
},
"required": [
"@type"
],
"title": "Hospital",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/LodgingReservation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LodgingReservation",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Reservation.schema.json",
"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 lodging at a hotel, motel, inn, etc.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
"format": "http://schema.org/LodgingReservation",
"properties": {
"checkinTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The earliest someone may check into a lodging establishment."
},
"checkoutTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The latest someone may check out of a lodging establishment."
},
"lodgingUnitDescription": {
"description": "A full description of the lodging unit.",
"items": {
"type": "string"
},
"type": "array"
},
"lodgingUnitType": {
"description": "Textual description of the unit type (including suite vs. room, size of bed, etc.).",
"items": {
"anyOf": [
{
"$ref": "QualitativeValue.schema.json"
},
{
"type": "string"
}
]
},
"type": "array"
},
"numAdults": {
"anyOf": [
{
"type": "integer"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The number of adults staying in the unit."
},
"numChildren": {
"anyOf": [
{
"type": "integer"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The number of children staying in the unit."
}
},
"title": "LodgingReservation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/ExhibitionEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ExhibitionEvent",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Event.schema.json",
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects."
}
],
"description": "Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ...",
"format": "http://schema.org/ExhibitionEvent",
"title": "ExhibitionEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/PlayAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PlayAction",
"$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 playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\n\nRelated actions:\n\n\nListenAction: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\nWatchAction: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.\n\n",
"format": "http://schema.org/PlayAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "PlayAction"
},
"audience": {
"$ref": "Audience.schema.json",
"description": "An intended audience, i.e. a group for whom something was created."
},
"event": {
"description": "Upcoming or past event associated with this place, organization, or action.",
"oneOf": [
{
"$ref": "Event.schema.json"
},
{
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "PlayAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | 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": {
"actionOption": {
"description": "A sub property of object. The options subject to this action.",
"items": {
"oneOf": [
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
},
"option": {
"description": "A sub property of object. The options subject to this action.",
"items": {
"oneOf": [
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
}
},
"title": "ChooseAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/PublicationVolume.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PublicationVolume",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A part of a successively published publication such as a periodical or multi-volume work, often numbered. It may represent a time span, such as a year.\n\nSee also blog post.",
"format": "http://schema.org/PublicationVolume",
"properties": {
"pageEnd": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The page on which the work ends; for example \"138\" or \"xvi\"."
},
"pageStart": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The page on which the work starts; for example \"135\" or \"xiii\"."
},
"pagination": {
"description": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".",
"items": {
"type": "string"
},
"type": "array"
},
"volumeNumber": {
"description": "Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".",
"items": {
"oneOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
"type": "array"
}
},
"title": "PublicationVolume",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/DownloadAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DownloadAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "TransferAction.schema.json",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another."
}
],
"description": "The act of downloading an object.",
"format": "http://schema.org/DownloadAction",
"title": "DownloadAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/TheaterEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TheaterEvent",
"$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: Theater performance.",
"format": "http://schema.org/TheaterEvent",
"title": "TheaterEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Seat.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Seat",
"$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 seat, such as a reserved seat in an event reservation.",
"format": "http://schema.org/Seat",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Seat"
},
"seatNumber": {
"description": "The location of the reserved seat (e.g., 27).",
"type": "string"
},
"seatRow": {
"description": "The row location of the reserved seat (e.g., B).",
"type": "string"
},
"seatSection": {
"description": "The section location of the reserved seat (e.g. Orchestra).",
"type": "string"
},
"seatingType": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "QualitativeValue.schema.json"
}
],
"description": "The type/class of the seat."
}
},
"required": [
"@type"
],
"title": "Seat",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/MensClothingStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MensClothingStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A men's clothing store.",
"format": "http://schema.org/MensClothingStore",
"title": "MensClothingStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/LiveBlogPosting.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LiveBlogPosting",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/BlogPosting",
"description": "A blog post."
}
],
"description": "A blog post 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": "http://schema.org/BlogPosting"
},
{
"items": {
"$ref": "http://schema.org/BlogPosting"
},
"type": "array"
}
]
}
},
"title": "LiveBlogPosting",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/TrainTrip.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TrainTrip",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Trip.schema.json",
"description": "A trip or journey. An itinerary of visits to one or more places."
}
],
"description": "A trip on a commercial train line.",
"format": "http://schema.org/TrainTrip",
"properties": {
"arrivalPlatform": {
"description": "The platform where the train arrives.",
"type": "string"
},
"arrivalStation": {
"$ref": "TrainStation.schema.json",
"description": "The station where the train trip ends."
},
"departurePlatform": {
"description": "The platform from which the train departs.",
"type": "string"
},
"departureStation": {
"$ref": "TrainStation.schema.json",
"description": "The station from which the train departs."
},
"trainName": {
"description": "The name of the train (e.g. The Orient Express).",
"type": "string"
},
"trainNumber": {
"description": "The unique identifier for the train.",
"type": "string"
}
},
"title": "TrainTrip",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/ComedyClub.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ComedyClub",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/EntertainmentBusiness",
"description": "A business providing entertainment."
}
],
"description": "A comedy club.",
"format": "http://schema.org/ComedyClub",
"title": "ComedyClub",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/EmploymentAgency.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/EmploymentAgency",
"$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 employment agency.",
"format": "http://schema.org/EmploymentAgency",
"title": "EmploymentAgency",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/PayAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PayAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/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": "An agent pays a price to a participant.",
"properties": {
"recipient": {
"description": "A sub property of participant. The participant who is at the receiving end of the action.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Audience"
},
{
"$ref": "http://schema.org/ContactPoint"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Audience"
},
{
"$ref": "http://schema.org/ContactPoint"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
"type": "array"
}
]
}
},
"title": "PayAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/BroadcastChannel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:BroadcastChannel",
"$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 unique instance of a BroadcastService on a CableOrSatelliteService lineup.",
"properties": {
"broadcastChannelId": {
"description": "The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.",
"type": "string"
},
"broadcastFrequency": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:BroadcastFrequencySpecification"
}
],
"description": "The frequency used for over-the-air broadcasts. Numeric values or simple ranges e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. \"87 FM\"."
},
"broadcastServiceTier": {
"description": "The type of service required to have access to the channel (e.g. Standard or Premium).",
"type": "string"
},
"genre": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "Genre of the creative work, broadcast channel or group."
},
"inBroadcastLineup": {
"$ref": "schema:CableOrSatelliteService",
"description": "The CableOrSatelliteService offering the channel."
},
"providesBroadcastService": {
"$ref": "schema:BroadcastService",
"description": "The BroadcastService offered on this channel."
}
},
"title": "BroadcastChannel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/AlignmentObject.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AlignmentObject",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Intangible",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "An intangible item that describes an alignment between a learning resource and a node in an educational framework.\n\nShould not be used where the nature of the alignment can be described using a simple property, for example to express that a resource teaches or assesses a competency.",
"format": "http://schema.org/AlignmentObject",
"properties": {
"alignmentType": {
"description": "A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"educationalFramework": {
"description": "The framework to which the resource being described is aligned.",
"type": "string"
},
"targetDescription": {
"description": "The description of a node in an established educational framework.",
"type": "string"
},
"targetName": {
"description": "The name of a node in an established educational framework.",
"type": "string"
},
"targetUrl": {
"description": "The URL of a node in an established educational framework.",
"format": "uri",
"type": "string"
}
},
"title": "AlignmentObject",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/JewelryStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/JewelryStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A jewelry store.",
"format": "http://schema.org/JewelryStore",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "JewelryStore"
}
},
"required": [
"@type"
],
"title": "JewelryStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Room.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Room",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Accommodation.schema.json",
"description": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations."
}
],
"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.",
"format": "http://schema.org/Room",
"title": "Room",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/LikeAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LikeAction",
"$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 positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.",
"format": "http://schema.org/LikeAction",
"title": "LikeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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 |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ClaimReview.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ClaimReview",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Review.schema.json",
"description": "A review of an item - for example, of a restaurant, movie, or store."
}
],
"description": "A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed).",
"format": "http://schema.org/ClaimReview",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ClaimReview"
},
"claimReviewed": {
"description": "A short summary of the specific claims reviewed in a ClaimReview.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "ClaimReview",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/MarryAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:MarryAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:InteractAction",
"description": "The act of interacting with another person or organization."
}
],
"description": "The act of marrying a person.",
"title": "MarryAction",
"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.