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
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/MusicAlbum.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:MusicAlbum",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:MusicPlaylist",
"description": "A collection of music tracks in playlist form."
}
],
"description": "A collection of music tracks.",
"properties": {
"albumProductionType": {
"description": "Classification of the album by it's type of content: soundtrack, live album, studio album, etc.",
"oneOf": [
{
"$ref": "schema:MusicAlbumProductionType"
},
{
"items": {
"$ref": "schema:MusicAlbumProductionType"
},
"type": "array"
}
]
},
"albumRelease": {
"description": "A release of this album.",
"oneOf": [
{
"$ref": "schema:MusicRelease"
},
{
"items": {
"$ref": "schema:MusicRelease"
},
"type": "array"
}
]
},
"albumReleaseType": {
"$ref": "schema:MusicAlbumReleaseType",
"description": "The kind of release which this album is: single, EP or album."
},
"byArtist": {
"anyOf": [
{
"$ref": "schema:MusicGroup"
},
{
"$ref": "schema:Person"
}
],
"description": "The artist that performed this album or recording."
}
},
"title": "MusicAlbum",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/ItemListOrderType.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/ItemListOrderType",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.",
"format": "http://schema.org/ItemListOrderType",
"oneOf": [
{
"const": "ItemListOrderAscending",
"description": "An ItemList ordered with lower values listed first."
},
{
"const": "ItemListOrderDescending",
"description": "An ItemList ordered with higher values listed first."
},
{
"const": "ItemListUnordered",
"description": "An ItemList ordered with no explicit order."
}
],
"title": "ItemListOrderType",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/PaymentCard.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/PaymentCard",
"$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."
},
{
"$ref": "PaymentMethod.schema.json",
"description": "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\n\nCommonly used values:\n\n\nhttp://purl.org/goodrelations/v1#ByBankTransferInAdvance\nhttp://purl.org/goodrelations/v1#ByInvoice\nhttp://purl.org/goodrelations/v1#Cash\nhttp://purl.org/goodrelations/v1#CheckInAdvance\nhttp://purl.org/goodrelations/v1#COD\nhttp://purl.org/goodrelations/v1#DirectDebit\nhttp://purl.org/goodrelations/v1#GoogleCheckout\nhttp://purl.org/goodrelations/v1#PayPal\nhttp://purl.org/goodrelations/v1#PaySwarm\n\n"
}
],
"description": "A payment method using a credit, debit, store or other card to associate the payment with an account.",
"format": "http://schema.org/PaymentCard",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "PaymentCard"
}
},
"required": [
"@type"
],
"title": "PaymentCard",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/UpdateAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:UpdateAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Action",
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html)."
}
],
"description": "The act of managing by changing/editing the state of the object.",
"properties": {
"collection": {
"description": "A sub property of object. The collection target of the action.",
"oneOf": [
{
"$ref": "schema:Thing"
},
{
"items": {
"$ref": "schema:Thing"
},
"type": "array"
}
]
},
"targetCollection": {
"description": "A sub property of object. The collection target of the action.",
"oneOf": [
{
"$ref": "schema:Thing"
},
{
"items": {
"$ref": "schema:Thing"
},
"type": "array"
}
]
}
},
"title": "UpdateAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/ParcelDelivery.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/ParcelDelivery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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": "The delivery of a parcel either via the postal service or a commercial service.",
"format": "http://schema.org/ParcelDelivery",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ParcelDelivery"
},
"carrier": {
"$ref": "Organization.schema.json",
"description": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights."
},
"deliveryAddress": {
"$ref": "PostalAddress.schema.json",
"description": "Destination address."
},
"deliveryStatus": {
"description": "New entry added as the package passes through each leg of its journey (from shipment to final delivery).",
"items": {
"$ref": "DeliveryEvent.schema.json"
},
"type": "array"
},
"expectedArrivalFrom": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The earliest date the package may arrive."
},
"expectedArrivalUntil": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The latest date the package may arrive."
},
"hasDeliveryMethod": {
"$ref": "DeliveryMethod.schema.json",
"description": "Method used for delivery or shipping."
},
"itemShipped": {
"description": "Item(s) being shipped.",
"items": {
"$ref": "Product.schema.json"
},
"type": "array"
},
"originAddress": {
"$ref": "PostalAddress.schema.json",
"description": "Shipper's address."
},
"partOfOrder": {
"$ref": "Order.schema.json",
"description": "The overall order the items in this delivery were included in."
},
"provider": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.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."
},
"trackingNumber": {
"description": "Shipper tracking number.",
"type": "string"
},
"trackingUrl": {
"description": "Tracking url for the parcel delivery.",
"format": "uri",
"type": "string"
}
},
"required": [
"@type"
],
"title": "ParcelDelivery",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
dcbb428317ce07ab8dcff50247c907f15443fb2f
| 2020-05-22T20:27:54 |
schemas/OrderAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/OrderAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "TradeAction.schema.json",
"description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment."
}
],
"description": "An agent orders an object/product/service to be delivered/sent.",
"format": "http://schema.org/OrderAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "OrderAction"
},
"deliveryMethod": {
"description": "A sub property of instrument. The method of delivery.",
"oneOf": [
{
"$ref": "DeliveryMethod.schema.json"
},
{
"items": {
"$ref": "DeliveryMethod.schema.json"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "OrderAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/BankAccount.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/BankAccount",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/FinancialProduct",
"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 product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest.",
"title": "BankAccount",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/FlightReservation.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/FlightReservation",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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 air travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use Offer.",
"format": "http://schema.org/FlightReservation",
"properties": {
"boardingGroup": {
"description": "The airline-specific indicator of boarding order / preference.",
"type": "string"
},
"passengerPriorityStatus": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "QualitativeValue.schema.json"
}
],
"description": "The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority)."
},
"passengerSequenceNumber": {
"description": "The passenger's sequence number as assigned by the airline.",
"type": "string"
},
"securityScreening": {
"description": "The type of security screening the passenger is subject to.",
"type": "string"
}
},
"title": "FlightReservation",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/ShareAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/ShareAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CommunicateAction.schema.json",
"description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation."
}
],
"description": "The act of distributing content to people for their amusement or edification.",
"format": "http://schema.org/ShareAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ShareAction"
}
},
"required": [
"@type"
],
"title": "ShareAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/SkiResort.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/SkiResort",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "SportsActivityLocation.schema.json",
"description": "A sports location, such as a playing field."
}
],
"description": "A ski resort.",
"format": "http://schema.org/SkiResort",
"title": "SkiResort",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/WriteAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/WriteAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreateAction.schema.json",
"description": "The act of deliberately creating/producing/generating/building a result out of the agent."
}
],
"description": "The act of authoring written creative content.",
"format": "http://schema.org/WriteAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "WriteAction"
},
"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.",
"items": {
"$ref": "Language.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "WriteAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/UnRegisterAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:UnRegisterAction",
"$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 un-registering from a service.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: antonym of UnRegisterAction.\\n* [[LeaveAction]]: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you werer previously registered, rather than leaving a team/group of people.",
"title": "UnRegisterAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
| 2020-05-23T01:54:36 |
schemas/DataFeedItem.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/DataFeedItem",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Intangible",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A single item within a larger data feed.",
"format": "http://schema.org/DataFeedItem",
"properties": {
"dateCreated": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date on which the CreativeWork was created or the item was added to a DataFeed."
},
"dateDeleted": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The datetime the item was removed from the DataFeed."
},
"dateModified": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed."
},
"item": {
"description": "An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')\u2019.",
"oneOf": [
{
"$ref": "http://schema.org/Thing"
},
{
"items": {
"$ref": "http://schema.org/Thing"
},
"type": "array"
}
]
}
},
"title": "DataFeedItem",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/ParkingFacility.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/ParkingFacility",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CivicStructure",
"description": "A public structure, such as a town hall or concert hall."
}
],
"description": "A parking lot or other parking facility.",
"title": "ParkingFacility",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
| 2020-05-23T01:54:36 |
schemas/AddAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/AddAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/UpdateAction",
"description": "The act of managing by changing/editing the state of the object."
}
],
"description": "The act of editing by adding an object to a collection.",
"format": "http://schema.org/AddAction",
"title": "AddAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/DanceGroup.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/DanceGroup",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/PerformingGroup",
"description": "A performance group, such as a band, an orchestra, or a circus."
}
],
"description": "A dance group\u2014for example, the Alvin Ailey Dance Theater or Riverdance.",
"title": "DanceGroup",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/PublicationIssue.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/PublicationIssue",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CreativeWork",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\n\nSee also blog post.",
"properties": {
"issueNumber": {
"description": "Identifies the issue of publication; for example, \"iii\" or \"2\".",
"oneOf": [
{
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
},
"pageEnd": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The page on which the work ends; for example \"138\" or \"xvi\"."
},
"pageStart": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The page on which the work starts; for example \"135\" or \"xiii\"."
},
"pagination": {
"description": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
}
},
"title": "PublicationIssue",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/Playground.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/Playground",
"$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 playground.",
"format": "http://schema.org/Playground",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Playground"
}
},
"required": [
"@type"
],
"title": "Playground",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/MediaGallery.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:MediaGallery",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:CollectionPage",
"description": "Web page type: Collection page."
}
],
"description": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia.",
"title": "MediaGallery",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
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.",
"type": "string"
},
"billingPeriod": {
"description": "The time interval used to compute the invoice.",
"format": "https://schema.org/Duration",
"type": "string"
},
"broker": {
"description": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"category": {
"description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
}
]
},
"confirmationNumber": {
"description": "A number that confirms the given order or payment has been received.",
"type": "string"
},
"customer": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "Party placing the order or paying the invoice."
},
"minimumPaymentDue": {
"anyOf": [
{
"$ref": "MonetaryAmount.schema.json"
},
{
"$ref": "PriceSpecification.schema.json"
}
],
"description": "The minimum payment required at this time."
},
"paymentDue": {
"description": "The date that payment is due.",
"format": "date-time",
"type": "string"
},
"paymentDueDate": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date that payment is due."
},
"paymentMethod": {
"$ref": "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).",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"paymentStatus": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "PaymentStatusType.schema.json"
}
],
"description": "The status of payment; whether the invoice has been paid or not."
},
"provider": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.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": "date",
"type": "string"
},
"totalPaymentDue": {
"anyOf": [
{
"$ref": "MonetaryAmount.schema.json"
},
{
"$ref": "PriceSpecification.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/AutoWash.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/AutoWash",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/AutomotiveBusiness",
"description": "Car repair, sales, or parts."
}
],
"description": "A car wash business.",
"format": "http://schema.org/AutoWash",
"title": "AutoWash",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/AssignAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/AssignAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AllocateAction.schema.json",
"description": "The act of organizing tasks/objects/events by associating resources to it."
}
],
"description": "The act of allocating an action/event/task to some destination (someone or something).",
"format": "http://schema.org/AssignAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "AssignAction"
}
},
"required": [
"@type"
],
"title": "AssignAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/HomeGoodsStore.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/HomeGoodsStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Store",
"description": "A retail good store."
}
],
"description": "A home goods store.",
"title": "HomeGoodsStore",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/IgnoreAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/IgnoreAction",
"$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 intentionally disregarding the object. An agent ignores an object.",
"format": "http://schema.org/IgnoreAction",
"title": "IgnoreAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
| 2020-05-23T01:54:36 |
schemas/ImageGallery.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/ImageGallery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/MediaGallery",
"description": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia."
}
],
"description": "Web page type: Image gallery page.",
"format": "http://schema.org/ImageGallery",
"title": "ImageGallery",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/MovieRentalStore.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/MovieRentalStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A movie rental store.",
"format": "http://schema.org/MovieRentalStore",
"title": "MovieRentalStore",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/Answer.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/Answer",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Comment.schema.json",
"description": "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the text property, and its topic via about, properties shared with all CreativeWorks."
}
],
"description": "An answer offered to a question; perhaps correct, perhaps opinionated or wrong.",
"format": "http://schema.org/Answer",
"title": "Answer",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/RsvpAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/RsvpAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/InformAction",
"description": "The act of notifying someone of information pertinent to them, with no expectation of a response."
}
],
"description": "The act of notifying an event organizer as to whether you expect to attend the event.",
"properties": {
"additionalNumberOfGuests": {
"description": "If responding yes, the number of guests who will attend in addition to the invitee.",
"oneOf": [
{
"type": "number"
},
{
"items": {
"type": "number"
},
"type": "array"
}
]
},
"comment": {
"description": "Comments, typically from users.",
"oneOf": [
{
"$ref": "http://schema.org/Comment"
},
{
"items": {
"$ref": "http://schema.org/Comment"
},
"type": "array"
}
]
},
"rsvpResponse": {
"$ref": "http://schema.org/RsvpResponseType",
"description": "The response (yes, no, maybe) to the RSVP."
}
},
"title": "RsvpAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/UserBlocks.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/UserBlocks",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/UserInteraction",
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment."
}
],
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment.",
"title": "UserBlocks",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
6d7567eecede3e8272a2640c2c2081768cb48462
| 2020-05-02T11:06:50 |
schemas/UserTweets.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/UserTweets",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "UserInteraction.schema.json",
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment."
}
],
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment.",
"format": "http://schema.org/UserTweets",
"title": "UserTweets",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/NailSalon.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:NailSalon",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:HealthAndBeautyBusiness",
"description": "Health and beauty."
}
],
"description": "A nail salon.",
"title": "NailSalon",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/Attorney.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/Attorney",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/LegalService",
"description": "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s)."
}
],
"description": "Professional service: Attorney. \n\nThis type is deprecated - LegalService is more inclusive and less ambiguous.",
"title": "Attorney",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
b2e53fc058740940d51ae80a92d53c99f0b57ab0
| 2020-05-12T22:52:12 |
schemas/Episode.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/Episode",
"$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 episode (e.g. TV, radio, video game) which can be part of a series or season.",
"format": "http://schema.org/Episode",
"properties": {
"actor": {
"description": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"actors": {
"description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"director": {
"$ref": "Person.schema.json",
"description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip."
},
"directors": {
"description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"episodeNumber": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "Position of the episode within an ordered group of episodes."
},
"musicBy": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "MusicGroup.schema.json"
}
],
"description": "The composer of the soundtrack."
},
"partOfSeason": {
"$ref": "CreativeWorkSeason.schema.json",
"description": "The season to which this episode belongs."
},
"partOfSeries": {
"$ref": "CreativeWorkSeries.schema.json",
"description": "The series to which this episode or season belongs."
},
"productionCompany": {
"$ref": "Organization.schema.json",
"description": "The production company or studio responsible for the item e.g. series, video game, episode etc."
},
"trailer": {
"$ref": "VideoObject.schema.json",
"description": "The trailer of a movie or tv/radio series, season, episode, etc."
}
},
"title": "Episode",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/Bakery.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:Bakery",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:FoodEstablishment",
"description": "A food-related business."
}
],
"description": "A bakery.",
"title": "Bakery",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/TattooParlor.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:TattooParlor",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:HealthAndBeautyBusiness",
"description": "Health and beauty."
}
],
"description": "A tattoo parlor.",
"title": "TattooParlor",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/CategoryCodeSet.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:CategoryCodeSet",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:DefinedTermSet",
"description": "A set of defined terms for example a set of categories or a classification scheme, a glossary, dictionary or enumeration."
}
],
"description": "A set of Category Code values.",
"properties": {
"hasCategoryCode": {
"description": "A Category code contained in this code set.",
"oneOf": [
{
"$ref": "schema:CategoryCode"
},
{
"items": {
"$ref": "schema:CategoryCode"
},
"type": "array"
}
]
}
},
"title": "CategoryCodeSet",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/ReservationPackage.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:ReservationPackage",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema: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 group of multiple reservations with common values for all sub-reservations.",
"properties": {
"subReservation": {
"$ref": "schema:Reservation",
"description": "The individual reservations included in the package. Typically a repeated property."
}
},
"title": "ReservationPackage",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/NewsArticle.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:NewsArticle",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Article",
"description": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html)."
}
],
"description": "A NewsArticle is an article whose content reports news, or provides background context and supporting materials for understanding the news.\n\nA more detailed overview of [schema.org News markup](/docs/news.html) is also available.\n",
"properties": {
"dateline": {
"description": "A [dateline](https://en.wikipedia.org/wiki/Dateline) is a brief piece of text included in news articles that describes where and when the story was written or filed though the date is often omitted. Sometimes only a placename is provided.\n\nStructured representations of dateline-related information can also be expressed more explicitly using [[locationCreated]] (which represents where a work was created e.g. where a news report was written). For location depicted or described in the content, use [[contentLocation]].\n\nDateline summaries are oriented more towards human readers than towards automated processing, and can vary substantially. Some examples: \"BEIRUT, Lebanon, June 2.\", \"Paris, France\", \"December 19, 2017 11:43AM Reporting from Washington\", \"Beijing/Moscow\", \"QUEZON CITY, Philippines\".\n ",
"type": "string"
},
"printColumn": {
"description": "The number of the column in which the NewsArticle appears in the print edition.",
"type": "string"
},
"printEdition": {
"description": "The edition of the print product in which the NewsArticle appears.",
"type": "string"
},
"printPage": {
"description": "If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).",
"type": "string"
},
"printSection": {
"description": "If this NewsArticle appears in print, this field indicates the print section in which the article appeared.",
"type": "string"
}
},
"title": "NewsArticle",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
| 2020-05-23T01:54:36 |
schemas/InternetCafe.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/InternetCafe",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/LocalBusiness",
"description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc."
}
],
"description": "An internet cafe.",
"format": "http://schema.org/InternetCafe",
"title": "InternetCafe",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/MusicVenue.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/MusicVenue",
"$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 music venue.",
"format": "http://schema.org/MusicVenue",
"title": "MusicVenue",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
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": {
"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"
}
]
}
},
"title": "PlayAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
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": "http://schema.org/TransferAction",
"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.",
"title": "DownloadAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/MotorcycleDealer.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/MotorcycleDealer",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AutomotiveBusiness.schema.json",
"description": "Car repair, sales, or parts."
}
],
"description": "A motorcycle dealer.",
"format": "http://schema.org/MotorcycleDealer",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "MotorcycleDealer"
}
},
"required": [
"@type"
],
"title": "MotorcycleDealer",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/RadioStation.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/RadioStation",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/LocalBusiness",
"description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc."
}
],
"description": "A radio station.",
"title": "RadioStation",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/MovieRentalStore.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/MovieRentalStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Store",
"description": "A retail good store."
}
],
"description": "A movie rental store.",
"title": "MovieRentalStore",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/BowlingAlley.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:BowlingAlley",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:SportsActivityLocation",
"description": "A sports location, such as a playing field."
}
],
"description": "A bowling alley.",
"title": "BowlingAlley",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cadd3691264c91598c783327c7e2e9823e41023a
| 2020-05-19T23:05:07 |
schemas/CourseInstance.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/CourseInstance",
"$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": "An instance of a Course which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students.",
"format": "http://schema.org/CourseInstance",
"properties": {
"courseMode": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
],
"description": "The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous )."
},
"instructor": {
"description": "A person assigned to instruct or provide instructional assistance for the CourseInstance.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
},
"title": "CourseInstance",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/IndividualProduct.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/IndividualProduct",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Product",
"description": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online."
}
],
"description": "A single, identifiable product instance (e.g. a laptop with a particular serial number).",
"properties": {
"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"
}
},
"title": "IndividualProduct",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/AMRadioChannel.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/AMRadioChannel",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/RadioChannel",
"description": "A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup."
}
],
"description": "A radio channel that uses AM.",
"title": "AMRadioChannel",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/DeactivateAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:DeactivateAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:ControlAction",
"description": "An agent controls a device or application."
}
],
"description": "The act of stopping or deactivating a device or application (e.g. stopping a timer or turning off a flashlight).",
"title": "DeactivateAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/FAQPage.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/FAQPage",
"$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": "A FAQPage is a WebPage presenting one or more \"Frequently asked questions\" (see also QAPage).",
"format": "http://schema.org/FAQPage",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "FAQPage"
}
},
"required": [
"@type"
],
"title": "FAQPage",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/DepartmentStore.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:DepartmentStore",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Store",
"description": "A retail good store."
}
],
"description": "A department store.",
"title": "DepartmentStore",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cadd3691264c91598c783327c7e2e9823e41023a
| 2020-05-19T23:05:07 |
schemas/VisualArtwork.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/VisualArtwork",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A work of art that is primarily visual in character.",
"format": "http://schema.org/VisualArtwork",
"properties": {
"artEdition": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\")."
},
"artMedium": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
],
"description": "The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)"
},
"artform": {
"description": "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"artworkSurface": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
],
"description": "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc."
},
"depth": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The depth of the item."
},
"height": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The height of the item."
},
"surface": {
"description": "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"width": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The width of the item."
}
},
"title": "VisualArtwork",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
| 2020-05-23T01:54:36 |
schemas/BreadcrumbList.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/BreadcrumbList",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/ItemList",
"description": "A list of items of any sort\u2014for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting."
}
],
"description": "A BreadcrumbList is an ItemList consisting of a chain of linked Web pages, typically described using at least their URL and their name, and typically ending with the current page.\n\nThe position property is used to reconstruct the order of the items in a BreadcrumbList The convention is that a breadcrumb list has an itemListOrder of ItemListOrderAscending (lower values listed first), and that the first items in this list correspond to the \"top\" or beginning of the breadcrumb trail, e.g. with a site or section homepage. The specific values of 'position' are not assigned meaning for a BreadcrumbList, but they should be integers, e.g. beginning with '1' for the first item in the list.",
"format": "http://schema.org/BreadcrumbList",
"title": "BreadcrumbList",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
| 2020-05-23T01:54:36 |
schemas/TrackAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/TrackAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/FindAction",
"description": "The act of finding an object.\n\nRelated actions:\n\n\nSearchAction: FindAction is generally lead by a SearchAction, but not necessarily.\n\n"
}
],
"description": "An agent tracks an object for updates.\n\nRelated actions:\n\n\nFollowAction: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.\nSubscribeAction: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects.\n\n",
"format": "http://schema.org/TrackAction",
"properties": {
"deliveryMethod": {
"description": "A sub property of instrument. The method of delivery.",
"oneOf": [
{
"$ref": "http://schema.org/DeliveryMethod"
},
{
"items": {
"$ref": "http://schema.org/DeliveryMethod"
},
"type": "array"
}
]
}
},
"title": "TrackAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/ItemList.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/ItemList",
"$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 list of items of any sort\u2014for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.",
"format": "http://schema.org/ItemList",
"properties": {
"itemListElement": {
"description": "For itemListElement values, you can use simple strings (e.g. \"Peter\", \"Paul\", \"Mary\"), existing entities, or use ListItem.\n\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\n\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "ListItem.schema.json"
},
{
"$ref": "Thing.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "ListItem.schema.json"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
}
]
},
"itemListOrder": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "ItemListOrderType.schema.json"
}
],
"description": "Type of ordering (e.g. Ascending, Descending, Unordered)."
},
"numberOfItems": {
"description": "The number of items in an ItemList. Note that some descriptions might not fully describe all items in a list (e.g., multi-page pagination); in such cases, the numberOfItems would be for the entire list.",
"type": "integer"
}
},
"title": "ItemList",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
b2e53fc058740940d51ae80a92d53c99f0b57ab0
| 2020-05-12T22:52:12 |
schemas/Order.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/Order",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.",
"format": "http://schema.org/Order",
"properties": {
"acceptedOffer": {
"description": "The offer(s) -- e.g., product, quantity and price combinations -- included in the order.",
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
},
"billingAddress": {
"$ref": "PostalAddress.schema.json",
"description": "The billing address for the order."
},
"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"
},
"confirmationNumber": {
"description": "A number that confirms the given order or payment has been received.",
"type": "string"
},
"customer": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "Party placing the order or paying the invoice."
},
"discount": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "Any discount applied (to an Order)."
},
"discountCode": {
"description": "Code used to redeem a discount.",
"type": "string"
},
"discountCurrency": {
"description": "The currency of the discount.\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"
},
"isGift": {
"description": "Was the offer accepted as a gift for someone other than the buyer.",
"type": "boolean"
},
"merchant": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "'merchant' is an out-dated term for 'seller'."
},
"orderDate": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "Date order was placed."
},
"orderDelivery": {
"$ref": "ParcelDelivery.schema.json",
"description": "The delivery of the parcel related to this order or order item."
},
"orderNumber": {
"description": "The identifier of the transaction.",
"type": "string"
},
"orderStatus": {
"$ref": "OrderStatus.schema.json",
"description": "The current status of the order."
},
"orderedItem": {
"description": "The item ordered.",
"items": {
"oneOf": [
{
"$ref": "OrderItem.schema.json"
},
{
"$ref": "Service.schema.json"
},
{
"$ref": "Product.schema.json"
}
]
},
"type": "array"
},
"partOfInvoice": {
"$ref": "Invoice.schema.json",
"description": "The order is being paid as part of the referenced Invoice."
},
"paymentDue": {
"description": "The date that payment is due.",
"format": "date-time",
"type": "string"
},
"paymentDueDate": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The date that payment is due."
},
"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).",
"items": {
"type": "string"
},
"type": "array"
},
"paymentUrl": {
"description": "The URL for sending a payment.",
"format": "uri",
"type": "string"
},
"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."
}
},
"title": "Order",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/VideoGameClip.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:VideoGameClip",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Clip",
"description": "A short TV or radio program or a segment/part of a program."
}
],
"description": "A short segment/part of a video game.",
"title": "VideoGameClip",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
dcbb428317ce07ab8dcff50247c907f15443fb2f
| 2020-05-22T20:27:54 |
schemas/AlignmentObject.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/AlignmentObject",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "An intangible item that describes an alignment between a learning resource and a node in an educational framework.\n\nShould not be used where the nature of the alignment can be described using a simple property, for example to express that a resource teaches or assesses a competency.",
"format": "http://schema.org/AlignmentObject",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "AlignmentObject"
},
"alignmentType": {
"description": "A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.",
"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"
}
},
"required": [
"@type"
],
"title": "AlignmentObject",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
6d7567eecede3e8272a2640c2c2081768cb48462
| 2020-05-02T11:06:50 |
schemas/ReturnAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/ReturnAction",
"$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 returning to the origin that which was previously received (concrete objects) or taken (ownership).",
"format": "http://schema.org/ReturnAction",
"properties": {
"recipient": {
"description": "A sub property of participant. The participant who is at the receiving end of the action.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Audience.schema.json"
},
{
"$ref": "ContactPoint.schema.json"
}
]
},
"type": "array"
}
},
"title": "ReturnAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/BikeStore.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/BikeStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Store",
"description": "A retail good store."
}
],
"description": "A bike store.",
"title": "BikeStore",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
b2e53fc058740940d51ae80a92d53c99f0b57ab0
| 2020-05-12T22:52:12 |
schemas/WriteAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/WriteAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreateAction.schema.json",
"description": "The act of deliberately creating/producing/generating/building a result out of the agent."
}
],
"description": "The act of authoring written creative content.",
"format": "http://schema.org/WriteAction",
"properties": {
"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.",
"items": {
"$ref": "Language.schema.json"
},
"type": "array"
}
},
"title": "WriteAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/MovieSeries.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:MovieSeries",
"$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": "A series of movies. Included movies can be indicated with the hasPart property.",
"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"
}
]
},
"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"
}
]
},
"musicBy": {
"anyOf": [
{
"$ref": "schema:MusicGroup"
},
{
"$ref": "schema:Person"
}
],
"description": "The composer of the soundtrack."
},
"productionCompany": {
"$ref": "schema:Organization",
"description": "The production company or studio responsible for the item e.g. series, video game, episode etc."
},
"trailer": {
"$ref": "schema:VideoObject",
"description": "The trailer of a movie or tv/radio series, season, episode, etc."
}
},
"title": "MovieSeries",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/DonateAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:DonateAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:TradeAction",
"description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment."
}
],
"description": "The act of providing goods, services, or money without compensation, often for philanthropic reasons.",
"properties": {
"recipient": {
"description": "A sub property of participant. The participant who is at the receiving end of the action.",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Audience"
},
{
"$ref": "schema:ContactPoint"
},
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Audience"
},
{
"$ref": "schema:ContactPoint"
},
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
"type": "array"
}
]
}
},
"title": "DonateAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
dcbb428317ce07ab8dcff50247c907f15443fb2f
| 2020-05-22T20:27:54 |
schemas/VoteAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/VoteAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "ChooseAction.schema.json",
"description": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options."
}
],
"description": "The act of expressing a preference from a fixed/finite/structured set of choices/options.",
"format": "http://schema.org/VoteAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "VoteAction"
},
"candidate": {
"description": "A sub property of object. The candidate subject of this action.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "VoteAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/MeetingRoom.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/MeetingRoom",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Room",
"description": "A room is a distinguishable space within a structure, usually separated from other spaces by interior walls. (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Room).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations."
}
],
"description": "A meeting room, conference room, or conference hall is a room provided for singular events such as business conferences and meetings (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Conference_hall).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.",
"title": "MeetingRoom",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/MedicalClinic.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:MedicalClinic",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:MedicalBusiness",
"description": "A particular physical or virtual business of an organization for medical purposes. Examples of MedicalBusiness include differents business run by health professionals."
},
{
"$ref": "schema:MedicalOrganization",
"description": "A medical organization (physical or not), such as hospital, institution or clinic."
}
],
"description": "A facility, often associated with a hospital or medical school, that is devoted to the specific diagnosis and/or healthcare. Previously limited to outpatients but with evolution it may be open to inpatients as well.",
"properties": {
"availableService": {
"description": "A medical service available from this provider.",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:MedicalProcedure"
},
{
"$ref": "schema:MedicalTest"
},
{
"$ref": "schema:MedicalTherapy"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:MedicalProcedure"
},
{
"$ref": "schema:MedicalTest"
},
{
"$ref": "schema:MedicalTherapy"
}
]
},
"type": "array"
}
]
},
"medicalSpecialty": {
"description": "A medical specialty of the provider.",
"oneOf": [
{
"$ref": "schema:MedicalSpecialty"
},
{
"items": {
"$ref": "schema:MedicalSpecialty"
},
"type": "array"
}
]
}
},
"title": "MedicalClinic",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/AllocateAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:AllocateAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:OrganizeAction",
"description": "The act of manipulating/administering/supervising/controlling one or more objects."
}
],
"description": "The act of organizing tasks/objects/events by associating resources to it.",
"title": "AllocateAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/StructuredValue.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:StructuredValue",
"$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": "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.",
"title": "StructuredValue",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/VideoGallery.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/VideoGallery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MediaGallery.schema.json",
"description": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia."
}
],
"description": "Web page type: Video gallery page.",
"format": "http://schema.org/VideoGallery",
"title": "VideoGallery",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/ItemListOrderType.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/ItemListOrderType",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.",
"format": "http://schema.org/ItemListOrderType",
"oneOf": [
{
"const": "ItemListOrderAscending",
"description": "An ItemList ordered with lower values listed first."
},
{
"const": "ItemListOrderDescending",
"description": "An ItemList ordered with higher values listed first."
},
{
"const": "ItemListUnordered",
"description": "An ItemList ordered with no explicit order."
}
],
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ItemListOrderType"
}
},
"required": [
"@type"
],
"title": "ItemListOrderType",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cadd3691264c91598c783327c7e2e9823e41023a
| 2020-05-19T23:05:07 |
schemas/Vehicle.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/Vehicle",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Product.schema.json",
"description": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online."
}
],
"description": "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.",
"format": "http://schema.org/Vehicle",
"properties": {
"cargoVolume": {
"$ref": "QuantitativeValue.schema.json",
"description": "The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.\n\nTypical unit code(s): LTR for liters, FTQ for cubic foot/feet\n\nNote: You can use minValue and maxValue to indicate ranges."
},
"dateVehicleFirstRegistered": {
"description": "The date of the first registration of the vehicle with the respective public authorities.",
"format": "date",
"type": "string"
},
"driveWheelConfiguration": {
"anyOf": [
{
"$ref": "DriveWheelConfigurationValue.schema.json"
},
{
"type": "string"
}
],
"description": "The drive wheel configuration, i.e. which roadwheels will receive torque from the vehicle's engine via the drivetrain."
},
"fuelConsumption": {
"$ref": "QuantitativeValue.schema.json",
"description": "The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).\n\n\nNote 1: There are unfortunately no standard unit codes for liters per 100 km. Use unitText to indicate the unit of measurement, e.g. L/100 km.\nNote 2: There are two ways of indicating the fuel consumption, fuelConsumption (e.g. 8 liters per 100 km) and fuelEfficiency (e.g. 30 miles per gallon). They are reciprocal.\nNote 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use valueReference to link the value for the fuel consumption to another value.\n\n"
},
"fuelEfficiency": {
"$ref": "QuantitativeValue.schema.json",
"description": "The distance traveled per unit of fuel used; most commonly miles per gallon (mpg) or kilometers per liter (km/L).\n\n\nNote 1: There are unfortunately no standard unit codes for miles per gallon or kilometers per liter. Use unitText to indicate the unit of measurement, e.g. mpg or km/L.\nNote 2: There are two ways of indicating the fuel consumption, fuelConsumption (e.g. 8 liters per 100 km) and fuelEfficiency (e.g. 30 miles per gallon). They are reciprocal.\nNote 3: Often, the absolute value is useful only when related to driving speed (\"at 80 km/h\") or usage pattern (\"city traffic\"). You can use valueReference to link the value for the fuel economy to another value.\n\n"
},
"fuelType": {
"anyOf": [
{
"$ref": "QualitativeValue.schema.json"
},
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
],
"description": "The type of fuel suitable for the engine or engines of the vehicle. If the vehicle has only one engine, this property can be attached directly to the vehicle."
},
"knownVehicleDamages": {
"description": "A textual description of known damages, both repaired and unrepaired.",
"items": {
"type": "string"
},
"type": "array"
},
"mileageFromOdometer": {
"$ref": "QuantitativeValue.schema.json",
"description": "The total distance travelled by the particular vehicle since its initial production, as read from its odometer.\n\nTypical unit code(s): KMT for kilometers, SMI for statute miles"
},
"numberOfAirbags": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The number or type of airbags in the vehicle."
},
"numberOfAxles": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The number of axles.\n\nTypical unit code(s): C62"
},
"numberOfDoors": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The number of doors.\n\nTypical unit code(s): C62"
},
"numberOfForwardGears": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The total number of forward gears available for the transmission system of the vehicle.\n\nTypical unit code(s): C62"
},
"numberOfPreviousOwners": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The number of owners of the vehicle, including the current one.\n\nTypical unit code(s): C62"
},
"productionDate": {
"description": "The date of production of the item, e.g. vehicle.",
"format": "date",
"type": "string"
},
"purchaseDate": {
"description": "The date the item e.g. vehicle was purchased by the current owner.",
"format": "date",
"type": "string"
},
"steeringPosition": {
"$ref": "SteeringPositionValue.schema.json",
"description": "The position of the steering wheel or similar device (mostly for cars)."
},
"vehicleConfiguration": {
"description": "A short text indicating the configuration of the vehicle, e.g. '5dr hatchback ST 2.5 MT 225 hp' or 'limited edition'.",
"items": {
"type": "string"
},
"type": "array"
},
"vehicleEngine": {
"description": "Information about the engine or engines of the vehicle.",
"items": {
"$ref": "EngineSpecification.schema.json"
},
"type": "array"
},
"vehicleIdentificationNumber": {
"description": "The Vehicle Identification Number (VIN) is a unique serial number used by the automotive industry to identify individual motor vehicles.",
"type": "string"
},
"vehicleInteriorColor": {
"description": "The color or color combination of the interior of the vehicle.",
"type": "string"
},
"vehicleInteriorType": {
"description": "The type or material of the interior of the vehicle (e.g. synthetic fabric, leather, wood, etc.). While most interior types are characterized by the material used, an interior type can also be based on vehicle usage or target audience.",
"type": "string"
},
"vehicleModelDate": {
"description": "The release date of a vehicle model (often used to differentiate versions of the same make and model).",
"format": "date",
"type": "string"
},
"vehicleSeatingCapacity": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The number of passengers that can be seated in the vehicle, both in terms of the physical space available, and in terms of limitations set by law.\n\nTypical unit code(s): C62 for persons."
},
"vehicleTransmission": {
"anyOf": [
{
"$ref": "QualitativeValue.schema.json"
},
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
],
"description": "The type of component used for transmitting the power from a rotating power source to the wheels or other relevant component(s) (\"gearbox\" for cars)."
}
},
"title": "Vehicle",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/RsvpAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/RsvpAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "InformAction.schema.json",
"description": "The act of notifying someone of information pertinent to them, with no expectation of a response."
}
],
"description": "The act of notifying an event organizer as to whether you expect to attend the event.",
"format": "http://schema.org/RsvpAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "RsvpAction"
},
"additionalNumberOfGuests": {
"description": "If responding yes, the number of guests who will attend in addition to the invitee.",
"items": {
"type": "number"
},
"type": "array"
},
"comment": {
"description": "Comments, typically from users.",
"items": {
"$ref": "Comment.schema.json"
},
"type": "array"
},
"rsvpResponse": {
"$ref": "RsvpResponseType.schema.json",
"description": "The response (yes, no, maybe) to the RSVP."
}
},
"required": [
"@type"
],
"title": "RsvpAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/TouristAttraction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:TouristAttraction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Place",
"description": "Entities that have a somewhat fixed, physical extension."
}
],
"description": "A tourist attraction. In principle any Thing can be a [[TouristAttraction]], from a [[Mountain]] and [[LandmarksOrHistoricalBuildings]] to a [[LocalBusiness]]. This Type can be used on its own to describe a general [[TouristAttraction]], or be used as an [[additionalType]] to add tourist attraction properties to any other type. (See examples below)",
"properties": {
"availableLanguage": {
"description": "A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:Language"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:Language"
}
]
},
"type": "array"
}
]
},
"touristType": {
"description": "Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc. ",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:Audience"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:Audience"
}
]
},
"type": "array"
}
]
}
},
"title": "TouristAttraction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
804d52988c59583ea5a0208a0ccfa22b31c01f43
| 2020-05-23T02:30:56 |
schemas/SendAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/SendAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/TransferAction",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another."
}
],
"description": "The act of physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:\n\n\nReceiveAction: The reciprocal of SendAction.\nGiveAction: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).\n\n",
"properties": {
"deliveryMethod": {
"description": "A sub property of instrument. The method of delivery.",
"oneOf": [
{
"$ref": "http://schema.org/DeliveryMethod"
},
{
"items": {
"$ref": "http://schema.org/DeliveryMethod"
},
"type": "array"
}
]
},
"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": "SendAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
| 2020-05-23T01:54:36 |
schemas/CancelAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/CancelAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/PlanAction",
"description": "The act of planning the execution of an event/task/action/reservation/plan to a future date."
}
],
"description": "The act of asserting that a future event/action is no longer going to happen.\n\nRelated actions:\n\n\nConfirmAction: The antonym of CancelAction.\n\n",
"format": "http://schema.org/CancelAction",
"title": "CancelAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
6d7567eecede3e8272a2640c2c2081768cb48462
| 2020-05-02T11:06:50 |
schemas/LakeBodyOfWater.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/LakeBodyOfWater",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "BodyOfWater.schema.json",
"description": "A body of water, such as a sea, ocean, or lake."
}
],
"description": "A lake (for example, Lake Pontrachain).",
"format": "http://schema.org/LakeBodyOfWater",
"title": "LakeBodyOfWater",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
b2e53fc058740940d51ae80a92d53c99f0b57ab0
| 2020-05-12T22:52:12 |
schemas/BusTrip.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/BusTrip",
"$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 bus line.",
"format": "http://schema.org/BusTrip",
"properties": {
"arrivalBusStop": {
"anyOf": [
{
"$ref": "BusStop.schema.json"
},
{
"$ref": "BusStation.schema.json"
}
],
"description": "The stop or station from which the bus arrives."
},
"busName": {
"description": "The name of the bus (e.g. Bolt Express).",
"type": "string"
},
"busNumber": {
"description": "The unique identifier for the bus.",
"type": "string"
},
"departureBusStop": {
"anyOf": [
{
"$ref": "BusStop.schema.json"
},
{
"$ref": "BusStation.schema.json"
}
],
"description": "The stop or station from which the bus departs."
}
},
"title": "BusTrip",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
b2e53fc058740940d51ae80a92d53c99f0b57ab0
| 2020-05-12T22:52:12 |
schemas/Permit.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/Permit",
"$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 permit issued by an organization, e.g. a parking pass.",
"format": "http://schema.org/Permit",
"properties": {
"issuedBy": {
"$ref": "Organization.schema.json",
"description": "The organization issuing the ticket or permit."
},
"issuedThrough": {
"$ref": "Service.schema.json",
"description": "The service through with the permit was granted."
},
"permitAudience": {
"$ref": "Audience.schema.json",
"description": "The target audience for this permit."
},
"validFor": {
"description": "The duration of validity of a permit or similar thing.",
"format": "https://schema.org/Duration",
"type": "string"
},
"validFrom": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The date when the item becomes valid."
},
"validIn": {
"$ref": "AdministrativeArea.schema.json",
"description": "The geographic area where a permit or similar thing is valid."
},
"validUntil": {
"description": "The date when the item is no longer valid.",
"format": "date",
"type": "string"
}
},
"title": "Permit",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
| 2020-05-23T01:54:36 |
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": "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": "Used to describe a seat, such as a reserved seat in an event reservation.",
"format": "http://schema.org/Seat",
"properties": {
"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": "http://schema.org/QualitativeValue"
}
],
"description": "The type/class of the seat."
}
},
"title": "Seat",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
b2e53fc058740940d51ae80a92d53c99f0b57ab0
| 2020-05-12T22:52:12 |
schemas/ListItem.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/ListItem",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "An list item, e.g. a step in a checklist or how-to description.",
"format": "http://schema.org/ListItem",
"properties": {
"item": {
"description": "An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')\u2019.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
},
"nextItem": {
"description": "A link to the ListItem that follows the current one.",
"items": {
"$ref": "ListItem.schema.json"
},
"type": "array"
},
"position": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The position of an item in a series or sequence of items."
},
"previousItem": {
"description": "A link to the ListItem that preceeds the current one.",
"items": {
"$ref": "ListItem.schema.json"
},
"type": "array"
}
},
"title": "ListItem",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/City.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/City",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AdministrativeArea.schema.json",
"description": "A geographical region, typically under the jurisdiction of a particular government."
}
],
"description": "A city or town.",
"format": "http://schema.org/City",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "City"
}
},
"required": [
"@type"
],
"title": "City",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/Sculpture.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/Sculpture",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A piece of sculpture.",
"format": "http://schema.org/Sculpture",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Sculpture"
}
},
"required": [
"@type"
],
"title": "Sculpture",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
ccfd7867a8f0a96f421a90bfd617be8735463a02
| 2020-05-27T22:00:22 |
schemas/ItemAvailability.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/ItemAvailability",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A list of possible product availability options.",
"oneOf": [
{
"const": "Discontinued",
"description": "Indicates that the item has been discontinued."
},
{
"const": "InStock",
"description": "Indicates that the item is in stock."
},
{
"const": "InStoreOnly",
"description": "Indicates that the item is available only at physical locations."
},
{
"const": "LimitedAvailability",
"description": "Indicates that the item has limited availability."
},
{
"const": "OnlineOnly",
"description": "Indicates that the item is available only online."
},
{
"const": "OutOfStock",
"description": "Indicates that the item is out of stock."
},
{
"const": "PreOrder",
"description": "Indicates that the item is available for pre-order."
},
{
"const": "PreSale",
"description": "Indicates that the item is available for ordering and delivery before general availability."
},
{
"const": "SoldOut",
"description": "Indicates that the item has sold out."
}
],
"title": "ItemAvailability",
"type": "string"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cadd3691264c91598c783327c7e2e9823e41023a
| 2020-05-19T23:05:07 |
schemas/HowToSupply.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/HowToSupply",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "HowToItem.schema.json",
"description": "An item used as either a tool or supply when performing the instructions for how to to achieve a result."
}
],
"description": "A supply consumed when performing the instructions for how to achieve a result.",
"format": "http://schema.org/HowToSupply",
"properties": {
"estimatedCost": {
"anyOf": [
{
"$ref": "MonetaryAmount.schema.json"
},
{
"type": "string"
}
],
"description": "The estimated cost of the supply or supplies consumed when performing instructions."
}
},
"title": "HowToSupply",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/Accommodation.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:Accommodation",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Place",
"description": "Entities that have a somewhat fixed, physical extension."
}
],
"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.\n",
"properties": {
"accommodationCategory": {
"description": "Category of an [[Accommodation]], following real estate conventions e.g. RESO (see [PropertySubType](https://ddwiki.reso.org/display/DDW17/PropertySubType+Field), and [PropertyType](https://ddwiki.reso.org/display/DDW17/PropertyType+Field) fields for suggested values).",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"accommodationFloorPlan": {
"description": "A floorplan of some [[Accommodation]].",
"oneOf": [
{
"$ref": "schema:FloorPlan"
},
{
"items": {
"$ref": "schema:FloorPlan"
},
"type": "array"
}
]
},
"amenityFeature": {
"description": "An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.",
"oneOf": [
{
"$ref": "schema:LocationFeatureSpecification"
},
{
"items": {
"$ref": "schema:LocationFeatureSpecification"
},
"type": "array"
}
]
},
"floorLevel": {
"description": "The floor level for an [[Accommodation]] in a multi-storey building. Since counting\n systems [vary internationally](https://en.wikipedia.org/wiki/Storey#Consecutive_number_floor_designations), the local system should be used where possible.",
"type": "string"
},
"floorSize": {
"$ref": "schema:QuantitativeValue",
"description": "The size of the accommodation, e.g. in square meter or squarefoot.\nTypical unit code(s): MTK for square meter, FTK for square foot, or YDK for square yard "
},
"leaseLength": {
"description": "Length of the lease for some [[Accommodation]], either particular to some [[Offer]] or in some cases intrinsic to the property.",
"oneOf": [
{
"anyOf": [
{
"$comment": "https://schema.org/Duration",
"type": "string"
},
{
"$ref": "schema:QuantitativeValue"
}
]
},
{
"items": {
"anyOf": [
{
"$comment": "https://schema.org/Duration",
"type": "string"
},
{
"$ref": "schema:QuantitativeValue"
}
]
},
"type": "array"
}
]
},
"numberOfBathroomsTotal": {
"description": "The total integer number of bathrooms in a some [[Accommodation]], following real estate conventions as [documented in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsTotalInteger+Field): \"The simple sum of the number of bathrooms. For example for a property with two Full Bathrooms and one Half Bathroom, the Bathrooms Total Integer will be 3.\". See also [[numberOfRooms]].",
"type": "integer"
},
"numberOfBedrooms": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "schema:QuantitativeValue"
}
],
"description": "The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]]."
},
"numberOfFullBathrooms": {
"description": "Number of full bathrooms - The total number of full and \u00be bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsFull field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsFull+Field).",
"oneOf": [
{
"type": "number"
},
{
"items": {
"type": "number"
},
"type": "array"
}
]
},
"numberOfPartialBathrooms": {
"description": "Number of partial bathrooms - The total number of half and \u00bc bathrooms in an [[Accommodation]]. This corresponds to the [BathroomsPartial field in RESO](https://ddwiki.reso.org/display/DDW17/BathroomsPartial+Field). ",
"oneOf": [
{
"type": "number"
},
{
"items": {
"type": "number"
},
"type": "array"
}
]
},
"numberOfRooms": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "schema: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."
},
"permittedUsage": {
"description": "Indications regarding the permitted usage of the accommodation.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"petsAllowed": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "string"
}
],
"description": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value."
},
"tourBookingPage": {
"description": "A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.",
"oneOf": [
{
"format": "uri",
"type": "string"
},
{
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
}
]
},
"yearBuilt": {
"description": "The year an [[Accommodation]] was constructed. This corresponds to the [YearBuilt field in RESO](https://ddwiki.reso.org/display/DDW17/YearBuilt+Field). ",
"type": "number"
}
},
"title": "Accommodation",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/State.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/State",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AdministrativeArea.schema.json",
"description": "A geographical region, typically under the jurisdiction of a particular government."
}
],
"description": "A state or province of a country.",
"format": "http://schema.org/State",
"title": "State",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/MediaSubscription.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/MediaSubscription",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A subscription which allows a user to access media including audio, video, books, etc.",
"format": "http://schema.org/MediaSubscription",
"properties": {
"authenticator": {
"$ref": "Organization.schema.json",
"description": "The Organization responsible for authenticating the user's subscription. For example, many media apps require a cable/satellite provider to authenticate your subscription before playing media."
},
"expectsAcceptanceOf": {
"description": "An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.",
"oneOf": [
{
"$ref": "Offer.schema.json"
},
{
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
}
]
}
},
"title": "MediaSubscription",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/Rating.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/Rating",
"$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 rating is an evaluation on a numeric scale, such as 1 to 5 stars.",
"format": "http://schema.org/Rating",
"properties": {
"author": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably."
},
"bestRating": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed."
},
"ratingValue": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The rating for the content.\n\nUsage guidelines:\n\n\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n"
},
"reviewAspect": {
"description": "This Review or Rating is relevant to this part or facet of the itemReviewed.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"worstRating": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed."
}
},
"title": "Rating",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/TVSeries.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/TVSeries",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
},
{
"$ref": "CreativeWorkSeries.schema.json",
"description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike ItemList which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\n\nSpecific subtypes are available for describing TVSeries, RadioSeries, MovieSeries, BookSeries, Periodical and VideoGameSeries. In each case, the hasPart / isPartOf properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\n\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate."
}
],
"description": "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.",
"format": "http://schema.org/TVSeries",
"properties": {
"actor": {
"description": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"actors": {
"description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"containsSeason": {
"description": "A season that is part of the media series.",
"oneOf": [
{
"$ref": "CreativeWorkSeason.schema.json"
},
{
"items": {
"$ref": "CreativeWorkSeason.schema.json"
},
"type": "array"
}
]
},
"countryOfOrigin": {
"$ref": "Country.schema.json",
"description": "The country of the principal offices of the production company or individual responsible for the movie or program."
},
"director": {
"$ref": "Person.schema.json",
"description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip."
},
"directors": {
"description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"episode": {
"description": "An episode of a tv, radio or game media within a series or season.",
"oneOf": [
{
"$ref": "Episode.schema.json"
},
{
"items": {
"$ref": "Episode.schema.json"
},
"type": "array"
}
]
},
"episodes": {
"description": "An episode of a TV/radio series or season.",
"oneOf": [
{
"$ref": "Episode.schema.json"
},
{
"items": {
"$ref": "Episode.schema.json"
},
"type": "array"
}
]
},
"musicBy": {
"anyOf": [
{
"$ref": "MusicGroup.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The composer of the soundtrack."
},
"numberOfEpisodes": {
"description": "The number of episodes in this season or series.",
"type": "integer"
},
"numberOfSeasons": {
"description": "The number of seasons in this series.",
"type": "integer"
},
"productionCompany": {
"$ref": "Organization.schema.json",
"description": "The production company or studio responsible for the item e.g. series, video game, episode etc."
},
"season": {
"description": "A season in a media series.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWorkSeason.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWorkSeason.schema.json"
}
]
},
"type": "array"
}
]
},
"seasons": {
"description": "A season in a media series.",
"oneOf": [
{
"$ref": "CreativeWorkSeason.schema.json"
},
{
"items": {
"$ref": "CreativeWorkSeason.schema.json"
},
"type": "array"
}
]
},
"trailer": {
"$ref": "VideoObject.schema.json",
"description": "The trailer of a movie or tv/radio series, season, episode, etc."
}
},
"title": "TVSeries",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/FireStation.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:FireStation",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:CivicStructure",
"description": "A public structure, such as a town hall or concert hall."
},
{
"$ref": "schema:EmergencyService",
"description": "An emergency service, such as a fire station or ER."
}
],
"description": "A fire station. With firemen.",
"title": "FireStation",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/MedicalTrial.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:MedicalTrial",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:MedicalStudy",
"description": "A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID."
}
],
"description": "A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.",
"properties": {
"trialDesign": {
"$ref": "schema:MedicalTrialDesign",
"description": "Specifics about the trial design (enumerated)."
}
},
"title": "MedicalTrial",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/StadiumOrArena.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/StadiumOrArena",
"$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": "SportsActivityLocation.schema.json",
"description": "A sports location, such as a playing field."
}
],
"description": "A stadium.",
"format": "http://schema.org/StadiumOrArena",
"title": "StadiumOrArena",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
| 2020-05-22T20:06:45 |
schemas/ItemAvailability.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/ItemAvailability",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A list of possible product availability options.",
"format": "http://schema.org/ItemAvailability",
"oneOf": [
{
"const": "Discontinued",
"description": "Indicates that the item has been discontinued."
},
{
"const": "InStock",
"description": "Indicates that the item is in stock."
},
{
"const": "InStoreOnly",
"description": "Indicates that the item is available only at physical locations."
},
{
"const": "LimitedAvailability",
"description": "Indicates that the item has limited availability."
},
{
"const": "OnlineOnly",
"description": "Indicates that the item is available only online."
},
{
"const": "OutOfStock",
"description": "Indicates that the item is out of stock."
},
{
"const": "PreOrder",
"description": "Indicates that the item is available for pre-order."
},
{
"const": "PreSale",
"description": "Indicates that the item is available for ordering and delivery before general availability."
},
{
"const": "SoldOut",
"description": "Indicates that the item has sold out."
}
],
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ItemAvailability"
}
},
"required": [
"@type"
],
"title": "ItemAvailability",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/DeliveryMethod.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:DeliveryMethod",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\\n* http://purl.org/goodrelations/v1#DeliveryModeFreight\\n* http://purl.org/goodrelations/v1#DeliveryModeMail\\n* http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\\n* http://purl.org/goodrelations/v1#DeliveryModePickUp\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n ",
"oneOf": [
{
"const": "LockerDelivery",
"description": "A DeliveryMethod in which an item is made available via locker."
},
{
"const": "OnSitePickup",
"description": "A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office."
},
{
"const": "ParcelService",
"description": "A private parcel service as the delivery mode available for a certain offer.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#DHL\\n* http://purl.org/goodrelations/v1#FederalExpress\\n* http://purl.org/goodrelations/v1#UPS\n "
}
],
"title": "DeliveryMethod",
"type": "string"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/OfferForPurchase.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:OfferForPurchase",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Offer",
"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](http://www.gs1.org/barcodes/technical/idkeys/gtin)-related fields, see [Check Digit calculator](http://www.gs1.org/barcodes/support/check_digit_calculator) and [validation guide](http://www.gs1us.org/resources/standards/gtin-validation-guide) from [GS1](http://www.gs1.org/)."
}
],
"description": "An [[OfferForPurchase]] in Schema.org represents an [[Offer]] to sell something, i.e. an [[Offer]] whose\n [[businessFunction]] is [sell](http://purl.org/goodrelations/v1#Sell.). See [Good Relations](https://en.wikipedia.org/wiki/GoodRelations) for\n background on the underlying concepts.\n ",
"title": "OfferForPurchase",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
| 2020-05-23T01:54:36 |
schemas/PerformanceRole.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/PerformanceRole",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Role",
"description": "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n\nSee also blog post."
}
],
"description": "A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.",
"format": "http://schema.org/PerformanceRole",
"properties": {
"characterName": {
"description": "The name of a character played in some acting or performing role, i.e. in a PerformanceRole.",
"type": "string"
}
},
"title": "PerformanceRole",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e24049d24a7bd3b639876aa7f9a9da997ce29114
| 2020-05-22T22:32:24 |
schemas/CreateAction.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/CreateAction",
"$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 deliberately creating/producing/generating/building a result out of the agent.",
"format": "http://schema.org/CreateAction",
"title": "CreateAction",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
| 2020-05-23T01:54:36 |
schemas/InsuranceAgency.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "http://schema.org/InsuranceAgency",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/FinancialService",
"description": "Financial services business."
}
],
"description": "An Insurance agency.",
"format": "http://schema.org/InsuranceAgency",
"title": "InsuranceAgency",
"type": "object"
}
|
Apache-2.0
|
en
|
charlestati/schema-org-json-schemas
|
e8b1f2cc6ffa01721896e87736f87654885d1475
| 2022-01-02T23:44:21 |
schemas/Newspaper.schema.json
| 25 |
2024-05-28T05:23:45.146893Z
|
{
"$id": "schema:Newspaper",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Periodical",
"description": "A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html)."
}
],
"description": "A publication containing information about varied topics that are pertinent to general information, a geographic area, or a specific subject matter (i.e. business, culture, education). Often published daily.",
"title": "Newspaper",
"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.