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 | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/BuddhistTemple.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BuddhistTemple",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/PlaceOfWorship",
"description": "Place of worship, such as a church, synagogue, or mosque."
}
],
"description": "A Buddhist temple.",
"title": "BuddhistTemple",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/TakeAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TakeAction",
"$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 gaining ownership of an object from an origin. Reciprocal of GiveAction.\n\nRelated actions:\n\n\nGiveAction: The reciprocal of TakeAction.\nReceiveAction: Unlike ReceiveAction, TakeAction implies that ownership has been transfered.\n\n",
"format": "http://schema.org/TakeAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "TakeAction"
}
},
"required": [
"@type"
],
"title": "TakeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/TVClip.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:TVClip",
"$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 TV program or a segment/part of a TV program.",
"properties": {
"partOfTVSeries": {
"$ref": "schema:TVSeries",
"description": "The TV series to which this episode or season belongs."
}
},
"title": "TVClip",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/VisualArtsEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/VisualArtsEvent",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Event.schema.json",
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects."
}
],
"description": "Event type: Visual arts event.",
"format": "http://schema.org/VisualArtsEvent",
"title": "VisualArtsEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/MusicGroup.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MusicGroup",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PerformingGroup.schema.json",
"description": "A performance group, such as a band, an orchestra, or a circus."
}
],
"description": "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.",
"format": "http://schema.org/MusicGroup",
"properties": {
"album": {
"description": "A music album.",
"items": {
"$ref": "MusicAlbum.schema.json"
},
"type": "array"
},
"albums": {
"description": "A collection of music albums.",
"items": {
"$ref": "MusicAlbum.schema.json"
},
"type": "array"
},
"genre": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
],
"description": "Genre of the creative work, broadcast channel or group."
},
"musicGroupMember": {
"description": "A member of a music group\u2014for example, John, Paul, George, or Ringo.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"track": {
"description": "A music recording (track)\u2014usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.",
"items": {
"anyOf": [
{
"$ref": "ItemList.schema.json"
},
{
"$ref": "MusicRecording.schema.json"
}
]
},
"type": "array"
},
"tracks": {
"description": "A music recording (track)\u2014usually a single song.",
"items": {
"$ref": "MusicRecording.schema.json"
},
"type": "array"
}
},
"title": "MusicGroup",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Playground.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Playground",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:CivicStructure",
"description": "A public structure, such as a town hall or concert hall."
}
],
"description": "A playground.",
"title": "Playground",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/TaxiService.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:TaxiService",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Service",
"description": "A service provided by an organization, e.g. delivery service, print services, etc."
}
],
"description": "A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.",
"title": "TaxiService",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/OnDemandEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/OnDemandEvent",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PublicationEvent.schema.json",
"description": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media."
}
],
"description": "A publication event e.g. catch-up TV or radio podcast, during which a program is available on-demand.",
"format": "http://schema.org/OnDemandEvent",
"title": "OnDemandEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/ServiceChannel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ServiceChannel",
"$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 means for accessing a service, e.g. a government office location, web site, or phone number.",
"properties": {
"availableLanguage": {
"description": "A language someone may use with or at the item, service or place. Please use one of the language codes from the IETF BCP 47 standard. See also inLanguage",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/Language"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/Language"
}
]
},
"type": "array"
}
]
},
"processingTime": {
"description": "Estimated processing time for the service using this channel.",
"format": "https://schema.org/Duration",
"type": "string"
},
"providesService": {
"$ref": "http://schema.org/Service",
"description": "The service provided by this channel."
},
"serviceLocation": {
"$ref": "http://schema.org/Place",
"description": "The location (e.g. civic structure, local business, etc.) where a person can go to access the service."
},
"servicePhone": {
"$ref": "http://schema.org/ContactPoint",
"description": "The phone number to use to access the service."
},
"servicePostalAddress": {
"$ref": "http://schema.org/PostalAddress",
"description": "The address for accessing the service by mail."
},
"serviceSmsNumber": {
"$ref": "http://schema.org/ContactPoint",
"description": "The number to access the service by text message."
},
"serviceUrl": {
"description": "The website to access the service.",
"format": "uri",
"type": "string"
}
},
"title": "ServiceChannel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/SeaBodyOfWater.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SeaBodyOfWater",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/BodyOfWater",
"description": "A body of water, such as a sea, ocean, or lake."
}
],
"description": "A sea (for example, the Caspian sea).",
"title": "SeaBodyOfWater",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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": "http://schema.org/Trip",
"description": "A trip or journey. An itinerary of visits to one or more places."
}
],
"description": "A trip on a commercial bus line.",
"properties": {
"arrivalBusStop": {
"anyOf": [
{
"$ref": "http://schema.org/BusStation"
},
{
"$ref": "http://schema.org/BusStop"
}
],
"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": "http://schema.org/BusStation"
},
{
"$ref": "http://schema.org/BusStop"
}
],
"description": "The stop or station from which the bus departs."
}
},
"title": "BusTrip",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/DeliveryMethod.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DeliveryMethod",
"$schema": "http://json-schema.org/draft-07/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\nhttp://purl.org/goodrelations/v1#DeliveryModeDirectDownload\nhttp://purl.org/goodrelations/v1#DeliveryModeFreight\nhttp://purl.org/goodrelations/v1#DeliveryModeMail\nhttp://purl.org/goodrelations/v1#DeliveryModeOwnFleet\nhttp://purl.org/goodrelations/v1#DeliveryModePickUp\nhttp://purl.org/goodrelations/v1#DHL\nhttp://purl.org/goodrelations/v1#FederalExpress\nhttp://purl.org/goodrelations/v1#UPS\n\n",
"format": "http://schema.org/DeliveryMethod",
"oneOf": [
{
"const": "OnSitePickup",
"description": "A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office."
}
],
"title": "DeliveryMethod",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/DataCatalog.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DataCatalog",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CreativeWork",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A collection of datasets.",
"properties": {
"dataset": {
"description": "A dataset contained in this catalog.",
"oneOf": [
{
"$ref": "http://schema.org/Dataset"
},
{
"items": {
"$ref": "http://schema.org/Dataset"
},
"type": "array"
}
]
}
},
"title": "DataCatalog",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Float.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Float",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Number",
"description": "Data type: Number.\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"
}
],
"description": "Data type: Floating number.",
"title": "Float",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/ImageObject.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ImageObject",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/MediaObject",
"description": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's)."
}
],
"description": "An image file.",
"format": "http://schema.org/ImageObject",
"properties": {
"caption": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/MediaObject"
}
],
"description": "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the encodingFormat."
},
"exifData": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/PropertyValue"
}
],
"description": "exif data for this object."
},
"representativeOfPage": {
"description": "Indicates whether this image is representative of the content of the page.",
"type": "boolean"
},
"thumbnail": {
"$ref": "http://schema.org/ImageObject",
"description": "Thumbnail image for an image or video."
}
},
"title": "ImageObject",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | a130ffcce9e85373dea613894f00d76d0dfaa9e1 | 2020-05-23T02:39:19 | schemas/Product.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Product",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Thing",
"description": "The most generic type of item."
}
],
"description": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online.",
"properties": {
"additionalProperty": {
"description": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.",
"oneOf": [
{
"$ref": "http://schema.org/PropertyValue"
},
{
"items": {
"$ref": "http://schema.org/PropertyValue"
},
"type": "array"
}
]
},
"aggregateRating": {
"$ref": "http://schema.org/AggregateRating",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"audience": {
"$ref": "http://schema.org/Audience",
"description": "An intended audience, i.e. a group for whom something was created."
},
"award": {
"description": "An award won by or for this item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"awards": {
"description": "Awards won by or for this item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"brand": {
"anyOf": [
{
"$ref": "http://schema.org/Brand"
},
{
"$ref": "http://schema.org/Organization"
}
],
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person."
},
"category": {
"description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "http://schema.org/Thing"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "http://schema.org/Thing"
}
]
},
"type": "array"
}
]
},
"color": {
"description": "The color of the product.",
"type": "string"
},
"depth": {
"anyOf": [
{
"$comment": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The depth of the item."
},
"gtin12": {
"description": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin13": {
"description": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin14": {
"description": "The GTIN-14 code of the product, or the product to which the offer refers. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin8": {
"description": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.",
"type": "string"
},
"height": {
"anyOf": [
{
"$comment": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The height of the item."
},
"isAccessoryOrSparePartFor": {
"description": "A pointer to another product (or multiple products) for which this product is an accessory or spare part.",
"oneOf": [
{
"$ref": "http://schema.org/Product"
},
{
"items": {
"$ref": "http://schema.org/Product"
},
"type": "array"
}
]
},
"isConsumableFor": {
"description": "A pointer to another product (or multiple products) for which this product is a consumable.",
"oneOf": [
{
"$ref": "http://schema.org/Product"
},
{
"items": {
"$ref": "http://schema.org/Product"
},
"type": "array"
}
]
},
"isRelatedTo": {
"description": "A pointer to another, somehow related product (or multiple products).",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Product"
},
{
"$ref": "http://schema.org/Service"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Product"
},
{
"$ref": "http://schema.org/Service"
}
]
},
"type": "array"
}
]
},
"isSimilarTo": {
"description": "A pointer to another, functionally similar product (or multiple products).",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Product"
},
{
"$ref": "http://schema.org/Service"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Product"
},
{
"$ref": "http://schema.org/Service"
}
]
},
"type": "array"
}
]
},
"itemCondition": {
"description": "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.",
"oneOf": [
{
"$ref": "http://schema.org/OfferItemCondition"
},
{
"items": {
"$ref": "http://schema.org/OfferItemCondition"
},
"type": "array"
}
]
},
"logo": {
"description": "An associated logo.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/ImageObject"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/ImageObject"
}
]
},
"type": "array"
}
]
},
"manufacturer": {
"$ref": "http://schema.org/Organization",
"description": "The manufacturer of the product."
},
"material": {
"description": "A material that something is made from, e.g. leather, wool, cotton, paper.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "http://schema.org/Product"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "http://schema.org/Product"
}
]
},
"type": "array"
}
]
},
"model": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/ProductModel"
}
],
"description": "The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties."
},
"mpn": {
"description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
"type": "string"
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Demand"
},
{
"$ref": "http://schema.org/Offer"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Demand"
},
{
"$ref": "http://schema.org/Offer"
}
]
},
"type": "array"
}
]
},
"productID": {
"description": "The product identifier, such as ISBN. For example: meta itemprop=\"productID\" content=\"isbn:123-456-789\".",
"type": "string"
},
"productionDate": {
"description": "The date of production of the item, e.g. vehicle.",
"format": "date",
"type": "string"
},
"purchaseDate": {
"description": "The date the item e.g. vehicle was purchased by the current owner.",
"format": "date",
"type": "string"
},
"releaseDate": {
"description": "The release date of a product or product model. This can be used to distinguish the exact variant of a product.",
"format": "date",
"type": "string"
},
"review": {
"description": "A review of the item.",
"oneOf": [
{
"$ref": "http://schema.org/Review"
},
{
"items": {
"$ref": "http://schema.org/Review"
},
"type": "array"
}
]
},
"reviews": {
"description": "Review of the item.",
"oneOf": [
{
"$ref": "http://schema.org/Review"
},
{
"items": {
"$ref": "http://schema.org/Review"
},
"type": "array"
}
]
},
"sku": {
"description": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
"type": "string"
},
"slogan": {
"description": "A slogan or motto associated with the item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"weight": {
"$ref": "http://schema.org/QuantitativeValue",
"description": "The weight of the product or person."
},
"width": {
"anyOf": [
{
"$comment": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "http://schema.org/QuantitativeValue"
}
],
"description": "The width of the item."
}
},
"title": "Product",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/HotelRoom.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HotelRoom",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Room.schema.json",
"description": "A room is a distinguishable space within a structure, usually separated from other spaces by interior walls. (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Room).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations."
}
],
"description": "A hotel room is a single room in a hotel.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.",
"format": "http://schema.org/HotelRoom",
"properties": {
"bed": {
"anyOf": [
{
"$ref": "BedDetails.schema.json"
},
{
"$ref": "BedType.schema.json"
},
{
"type": "string"
}
],
"description": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property."
},
"occupancy": {
"$ref": "QuantitativeValue.schema.json",
"description": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person"
}
},
"title": "HotelRoom",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/EducationEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/EducationEvent",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Event.schema.json",
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects."
}
],
"description": "Event type: Education event.",
"format": "http://schema.org/EducationEvent",
"title": "EducationEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Flight.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Flight",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Trip",
"description": "A trip or journey. An itinerary of visits to one or more places."
}
],
"description": "An airline flight.",
"properties": {
"aircraft": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:Vehicle"
}
],
"description": "The kind of aircraft (e.g., \"Boeing 747\")."
},
"arrivalAirport": {
"$ref": "schema:Airport",
"description": "The airport where the flight terminates."
},
"arrivalGate": {
"description": "Identifier of the flight's arrival gate.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"arrivalTerminal": {
"description": "Identifier of the flight's arrival terminal.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"boardingPolicy": {
"$ref": "schema:BoardingPolicyType",
"description": "The type of boarding policy used by the airline (e.g. zone-based or group-based)."
},
"carrier": {
"$ref": "schema:Organization",
"description": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights."
},
"departureAirport": {
"$ref": "schema:Airport",
"description": "The airport where the flight originates."
},
"departureGate": {
"description": "Identifier of the flight's departure gate.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"departureTerminal": {
"description": "Identifier of the flight's departure terminal.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"estimatedFlightDuration": {
"anyOf": [
{
"$comment": "https://schema.org/Duration",
"type": "string"
},
{
"type": "string"
}
],
"description": "The estimated time the flight will take."
},
"flightDistance": {
"anyOf": [
{
"$comment": "https://schema.org/Distance",
"type": "string"
},
{
"type": "string"
}
],
"description": "The distance of the flight."
},
"flightNumber": {
"description": "The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.",
"type": "string"
},
"mealService": {
"description": "Description of the meals that will be provided or available for purchase.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"seller": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
],
"description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider."
},
"webCheckinTime": {
"description": "The time when a passenger can check into the flight online.",
"format": "date-time",
"type": "string"
}
},
"title": "Flight",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Invoice.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Invoice",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A statement of the money due for goods or services; a bill.",
"format": "http://schema.org/Invoice",
"properties": {
"accountId": {
"description": "The identifier for the account the payment will be applied to.",
"format": "http://schema.org/Text"
},
"billingPeriod": {
"$ref": "Duration.schema.json",
"description": "The time interval used to compute the invoice."
},
"broker": {
"description": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"category": {
"description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
"items": {
"oneOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
},
"confirmationNumber": {
"description": "A number that confirms the given order or payment has been received.",
"format": "http://schema.org/Text"
},
"customer": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "Party placing the order or paying the invoice."
},
"minimumPaymentDue": {
"anyOf": [
{
"$ref": "PriceSpecification.schema.json"
},
{
"$ref": "MonetaryAmount.schema.json"
}
],
"description": "The minimum payment required at this time."
},
"paymentDue": {
"description": "The date that payment is due.",
"format": "http://schema.org/DateTime"
},
"paymentDueDate": {
"description": "The date that payment is due.",
"format": "http://schema.org/DateTime"
},
"paymentMethod": {
"$ref": "PaymentMethod.schema.json",
"description": "The name of the credit card or other method of payment for the order."
},
"paymentMethodId": {
"description": "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).",
"format": "http://schema.org/Text"
},
"paymentStatus": {
"$ref": "PaymentStatusType.schema.json",
"description": "The status of payment; whether the invoice has been paid or not."
},
"provider": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller."
},
"referencesOrder": {
"$ref": "Order.schema.json",
"description": "The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice."
},
"scheduledPaymentDate": {
"description": "The date the invoice is scheduled to be paid.",
"format": "http://schema.org/Date"
},
"totalPaymentDue": {
"anyOf": [
{
"$ref": "PriceSpecification.schema.json"
},
{
"$ref": "MonetaryAmount.schema.json"
}
],
"description": "The total amount due."
}
},
"title": "Invoice",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/GamePlayMode.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/GamePlayMode",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Indicates whether this game is multi-player, co-op or single-player.",
"format": "http://schema.org/GamePlayMode",
"oneOf": [
{
"const": "CoOp",
"description": "Play mode: CoOp. Co-operative games, where you play on the same team with friends."
},
{
"const": "MultiPlayer",
"description": "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously."
},
{
"const": "SinglePlayer",
"description": "Play mode: SinglePlayer. Which is played by a lone player."
}
],
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "GamePlayMode"
}
},
"required": [
"@type"
],
"title": "GamePlayMode",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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": "PlanAction.schema.json",
"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 | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/BoardingPolicyType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BoardingPolicyType",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A type of boarding policy used by an airline.",
"format": "http://schema.org/BoardingPolicyType",
"oneOf": [
{
"const": "GroupBoardingPolicy",
"description": "The airline boards by groups based on check-in time, priority, etc."
},
{
"const": "ZoneBoardingPolicy",
"description": "The airline boards by zones of the plane."
}
],
"title": "BoardingPolicyType",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | 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": "http://schema.org/CreativeWork",
"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.",
"oneOf": [
{
"$ref": "http://schema.org/Person"
},
{
"items": {
"$ref": "http://schema.org/Person"
},
"type": "array"
}
]
},
"actors": {
"description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "http://schema.org/Person"
},
{
"items": {
"$ref": "http://schema.org/Person"
},
"type": "array"
}
]
},
"director": {
"$ref": "http://schema.org/Person",
"description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip."
},
"directors": {
"description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "http://schema.org/Person"
},
{
"items": {
"$ref": "http://schema.org/Person"
},
"type": "array"
}
]
},
"episodeNumber": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "Position of the episode within an ordered group of episodes."
},
"musicBy": {
"anyOf": [
{
"$ref": "http://schema.org/MusicGroup"
},
{
"$ref": "http://schema.org/Person"
}
],
"description": "The composer of the soundtrack."
},
"partOfSeason": {
"$ref": "http://schema.org/CreativeWorkSeason",
"description": "The season to which this episode belongs."
},
"partOfSeries": {
"$ref": "http://schema.org/CreativeWorkSeries",
"description": "The series to which this episode or season belongs."
},
"productionCompany": {
"$ref": "http://schema.org/Organization",
"description": "The production company or studio responsible for the item e.g. series, video game, episode etc."
},
"trailer": {
"$ref": "http://schema.org/VideoObject",
"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 | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/BroadcastChannel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BroadcastChannel",
"$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 unique instance of a BroadcastService on a CableOrSatelliteService lineup.",
"format": "http://schema.org/BroadcastChannel",
"properties": {
"broadcastChannelId": {
"description": "The unique address by which the BroadcastService can be identified in a provider lineup. In US, this is typically a number.",
"format": "http://schema.org/Text"
},
"broadcastFrequency": {
"$ref": "BroadcastFrequencySpecification.schema.json",
"description": "The frequency used for over-the-air broadcasts. Numeric values or simple ranges e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. \"87 FM\"."
},
"broadcastServiceTier": {
"description": "The type of service required to have access to the channel (e.g. Standard or Premium).",
"format": "http://schema.org/Text"
},
"genre": {
"description": "Genre of the creative work, broadcast channel or group.",
"format": "uri",
"type": "string"
},
"inBroadcastLineup": {
"$ref": "CableOrSatelliteService.schema.json",
"description": "The CableOrSatelliteService offering the channel."
},
"providesBroadcastService": {
"$ref": "BroadcastService.schema.json",
"description": "The BroadcastService offered on this channel."
}
},
"title": "BroadcastChannel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/CarUsageType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:CarUsageType",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A value indicating a special usage of a car, e.g. commercial rental, driving school, or as a taxi.",
"oneOf": [
{
"const": "DrivingSchoolVehicleUsage",
"description": "Indicates the usage of the vehicle for driving school."
},
{
"const": "RentalVehicleUsage",
"description": "Indicates the usage of the vehicle as a rental car."
},
{
"const": "TaxiVehicleUsage",
"description": "Indicates the usage of the car as a taxi."
}
],
"title": "CarUsageType",
"type": "string"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/WebSite.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:WebSite",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:CreativeWork",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.",
"properties": {
"issn": {
"description": "The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.",
"type": "string"
}
},
"title": "WebSite",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/DataFeedItem.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DataFeedItem",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A single item within a larger data feed.",
"format": "http://schema.org/DataFeedItem",
"properties": {
"dateCreated": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The date on which the CreativeWork was created or the item was added to a DataFeed."
},
"dateDeleted": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The datetime the item was removed from the DataFeed."
},
"dateModified": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"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.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
}
},
"title": "DataFeedItem",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/DataType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:DataType",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "The basic data types such as Integers, Strings, etc.",
"title": "DataType",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | 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": "AutomotiveBusiness.schema.json",
"description": "Car repair, sales, or parts."
}
],
"description": "A car wash business.",
"format": "http://schema.org/AutoWash",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "AutoWash"
}
},
"required": [
"@type"
],
"title": "AutoWash",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/NailSalon.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/NailSalon",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/HealthAndBeautyBusiness",
"description": "Health and beauty."
}
],
"description": "A nail salon.",
"title": "NailSalon",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/PaymentService.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PaymentService",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "FinancialProduct.schema.json",
"description": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry."
}
],
"description": "A Service to transfer funds from a person or organization to a beneficiary person or organization.",
"format": "http://schema.org/PaymentService",
"title": "PaymentService",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ProductModel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ProductModel",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Product.schema.json",
"description": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online."
}
],
"description": "A datasheet or vendor specification of a product (in the sense of a prototypical description).",
"format": "http://schema.org/ProductModel",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ProductModel"
},
"isVariantOf": {
"description": "A pointer to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive.",
"items": {
"$ref": "ProductModel.schema.json"
},
"type": "array"
},
"predecessorOf": {
"description": "A pointer from a previous, often discontinued variant of the product to its newer variant.",
"items": {
"$ref": "ProductModel.schema.json"
},
"type": "array"
},
"successorOf": {
"description": "A pointer from a newer variant of a product to its previous, often discontinued predecessor.",
"items": {
"$ref": "ProductModel.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "ProductModel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/FinancialProduct.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/FinancialProduct",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Service.schema.json",
"description": "A service provided by an organization, e.g. delivery service, print services, etc."
}
],
"description": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.",
"format": "http://schema.org/FinancialProduct",
"properties": {
"annualPercentageRate": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction."
},
"feesAndCommissionsSpecification": {
"description": "Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
},
"interestRate": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate."
}
},
"title": "FinancialProduct",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/ComputerStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ComputerStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A computer store.",
"format": "http://schema.org/ComputerStore",
"title": "ComputerStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Campground.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Campground",
"$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": "LodgingBusiness.schema.json",
"description": "A lodging business, such as a motel, hotel, or inn."
}
],
"description": "A camping site, campsite, or Campground is a place used for overnight stay in the outdoors, typically containing individual CampingPitch locations. \n\nIn British English a campsite is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites (Source: Wikipedia see https://en.wikipedia.org/wiki/Campsite).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.",
"format": "http://schema.org/Campground",
"title": "Campground",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/NailSalon.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/NailSalon",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "HealthAndBeautyBusiness.schema.json",
"description": "Health and beauty."
}
],
"description": "A nail salon.",
"format": "http://schema.org/NailSalon",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "NailSalon"
}
},
"required": [
"@type"
],
"title": "NailSalon",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/CreativeWork.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CreativeWork",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
"format": "http://schema.org/CreativeWork",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "CreativeWork"
},
"about": {
"$ref": "Thing.schema.json",
"description": "The subject matter of the content."
},
"accessMode": {
"description": "The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Expected values include: auditory, tactile, textual, visual, colorDependent, chartOnVisual, chemOnVisual, diagramOnVisual, mathOnVisual, musicOnVisual, textOnVisual.",
"items": {
"type": "string"
},
"type": "array"
},
"accessModeSufficient": {
"description": "A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Expected values include: auditory, tactile, textual, visual.",
"items": {
"$ref": "ItemList.schema.json"
},
"type": "array"
},
"accessibilityAPI": {
"description": "Indicates that the resource is compatible with the referenced accessibility API (WebSchemas wiki lists possible values).",
"items": {
"type": "string"
},
"type": "array"
},
"accessibilityControl": {
"description": "Identifies input methods that are sufficient to fully control the described resource (WebSchemas wiki lists possible values).",
"items": {
"type": "string"
},
"type": "array"
},
"accessibilityFeature": {
"description": "Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility (WebSchemas wiki lists possible values).",
"items": {
"type": "string"
},
"type": "array"
},
"accessibilityHazard": {
"description": "A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3 (WebSchemas wiki lists possible values).",
"items": {
"type": "string"
},
"type": "array"
},
"accessibilitySummary": {
"description": "A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as \"short descriptions are present but long descriptions will be needed for non-visual users\" or \"short descriptions are present and no long descriptions are needed.\"",
"type": "string"
},
"accountablePerson": {
"$ref": "Person.schema.json",
"description": "Specifies the Person that is legally accountable for the CreativeWork."
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"alternativeHeadline": {
"description": "A secondary title of the CreativeWork.",
"items": {
"type": "string"
},
"type": "array"
},
"associatedMedia": {
"$ref": "MediaObject.schema.json",
"description": "A media object that encodes this CreativeWork. This property is a synonym for encoding."
},
"audience": {
"$ref": "Audience.schema.json",
"description": "An intended audience, i.e. a group for whom something was created."
},
"audio": {
"description": "An embedded audio object.",
"items": {
"anyOf": [
{
"$ref": "AudioObject.schema.json"
},
{
"$ref": "Clip.schema.json"
},
{
"$ref": "MusicRecording.schema.json"
}
]
},
"type": "array"
},
"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."
},
"award": {
"description": "An award won by or for this item.",
"items": {
"type": "string"
},
"type": "array"
},
"awards": {
"description": "Awards won by or for this item.",
"items": {
"type": "string"
},
"type": "array"
},
"character": {
"description": "Fictional person connected with a creative work.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"citation": {
"description": "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
}
]
},
"type": "array"
},
"comment": {
"description": "Comments, typically from users.",
"items": {
"$ref": "Comment.schema.json"
},
"type": "array"
},
"commentCount": {
"description": "The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.",
"type": "integer"
},
"contentLocation": {
"$ref": "Place.schema.json",
"description": "The location depicted or described in the content. For example, the location in a photograph or painting."
},
"contentRating": {
"description": "Official rating of a piece of content\u2014for example,'MPAA PG-13'.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Rating.schema.json"
}
]
},
"type": "array"
},
"contributor": {
"description": "A secondary contributor to the CreativeWork or Event.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"copyrightHolder": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The party holding the legal copyright to the CreativeWork."
},
"copyrightYear": {
"description": "The year during which the claimed copyright for the CreativeWork was first asserted.",
"type": "number"
},
"creator": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork."
},
"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."
},
"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."
},
"datePublished": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "Date of first broadcast/publication."
},
"discussionUrl": {
"description": "A link to the page containing the comments of the CreativeWork.",
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
},
"editor": {
"$ref": "Person.schema.json",
"description": "Specifies the Person who edited the CreativeWork."
},
"educationalAlignment": {
"description": "An alignment to an established educational framework.\n\nThis property should 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.",
"items": {
"$ref": "AlignmentObject.schema.json"
},
"type": "array"
},
"educationalUse": {
"description": "The purpose of a work in the context of education; for example, 'assignment', 'group work'.",
"type": "string"
},
"encoding": {
"description": "A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.",
"items": {
"$ref": "MediaObject.schema.json"
},
"type": "array"
},
"encodingFormat": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "Media type typically expressed using a MIME format (see IANA site and MDN reference) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.).\n\nIn cases where a CreativeWork has several media type representations, encoding can be used to indicate each MediaObject alongside particular encodingFormat information.\n\nUnregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry."
},
"encodings": {
"description": "A media object that encodes this CreativeWork.",
"items": {
"$ref": "MediaObject.schema.json"
},
"type": "array"
},
"exampleOfWork": {
"description": "A creative work that this work is an example/instance/realization/derivation of.",
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
},
"expires": {
"description": "Date the content expires and is no longer useful or available. For example a VideoObject or NewsArticle whose availability or relevance is time-limited, or a ClaimReview fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.",
"format": "date",
"type": "string"
},
"fileFormat": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "Media type, typically MIME format (see IANA site) of the content e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry."
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"genre": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "Genre of the creative work, broadcast channel or group."
},
"hasPart": {
"description": "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).",
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
},
"headline": {
"description": "Headline of the article.",
"type": "string"
},
"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."
},
"interactionStatistic": {
"$ref": "InteractionCounter.schema.json",
"description": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used."
},
"interactivityType": {
"description": "The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.",
"type": "string"
},
"isAccessibleForFree": {
"description": "A flag to signal that the item, event, or place is accessible for free.",
"type": "boolean"
},
"isBasedOn": {
"description": "A resource from which this work is derived or from which it is a modification or adaption.",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "Product.schema.json"
}
]
},
"type": "array"
},
"isBasedOnUrl": {
"description": "A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "Product.schema.json"
}
]
},
"type": "array"
},
"isFamilyFriendly": {
"description": "Indicates whether this content is family friendly.",
"type": "boolean"
},
"isPartOf": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
}
],
"description": "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of."
},
"keywords": {
"description": "Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.",
"type": "string"
},
"learningResourceType": {
"description": "The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.",
"type": "string"
},
"license": {
"description": "A license document that applies to this content, typically indicated by URL.",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
}
]
},
"type": "array"
},
"locationCreated": {
"$ref": "Place.schema.json",
"description": "The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork."
},
"mainEntity": {
"description": "Indicates the primary entity described in some page or other CreativeWork.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
},
"material": {
"description": "A material that something is made from, e.g. leather, wool, cotton, paper.",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "Product.schema.json"
}
]
},
"type": "array"
},
"mentions": {
"description": "Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"items": {
"anyOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
"type": "array"
},
"position": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The position of an item in a series or sequence of items."
},
"producer": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The person or organization who produced the work (e.g. music album, movie, tv/radio series etc.)."
},
"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."
},
"publication": {
"description": "A publication event associated with the item.",
"items": {
"$ref": "PublicationEvent.schema.json"
},
"type": "array"
},
"publisher": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The publisher of the creative work."
},
"publishingPrinciples": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
}
],
"description": "The publishingPrinciples property indicates (typically via URL) a document describing the editorial principles of an Organization (or individual e.g. a Person writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a CreativeWork (e.g. NewsArticle) the principles are those of the party primarily responsible for the creation of the CreativeWork.\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a funder) can be expressed using schema.org terminology."
},
"recordedAt": {
"$ref": "Event.schema.json",
"description": "The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event."
},
"releasedEvent": {
"$ref": "PublicationEvent.schema.json",
"description": "The place and time the release was issued, expressed as a PublicationEvent."
},
"review": {
"description": "A review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"reviews": {
"description": "Review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"schemaVersion": {
"description": "Indicates (by URL or string) a particular version of a schema used in some CreativeWork. For example, a document could declare a schemaVersion using an URL such as http://schema.org/version/2.0/ if precise indication of schema version was required by some application.",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
},
"sourceOrganization": {
"$ref": "Organization.schema.json",
"description": "The Organization on whose behalf the creator was working."
},
"spatial": {
"$ref": "Place.schema.json",
"description": "The \"spatial\" property can be used in cases when more specific properties\n(e.g. locationCreated, spatialCoverage, contentLocation) are not known to be appropriate."
},
"spatialCoverage": {
"$ref": "Place.schema.json",
"description": "The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of\n contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates\n areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York."
},
"sponsor": {
"description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"temporal": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "string"
}
],
"description": "The \"temporal\" property can be used in cases where more specific properties\n(e.g. temporalCoverage, dateCreated, dateModified, datePublished) are not known to be appropriate."
},
"temporalCoverage": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in ISO 8601 time interval format. In\n the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written \"2011/2012\"). Other forms of content e.g. ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their temporalCoverage in broader terms - textually or via well-known URL.\n Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via \"1939/1945\".\n\nOpen-ended date ranges can be written with \"..\" in place of the end date. For example, \"2015-11/..\" indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated."
},
"text": {
"description": "The textual content of this CreativeWork.",
"type": "string"
},
"thumbnailUrl": {
"description": "A thumbnail image relevant to the Thing.",
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
},
"timeRequired": {
"description": "Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.",
"format": "https://schema.org/Duration",
"type": "string"
},
"translator": {
"description": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"typicalAgeRange": {
"description": "The typical expected age range, e.g. '7-9', '11-'.",
"type": "string"
},
"version": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The version of the CreativeWork embodied by a specified resource."
},
"video": {
"description": "An embedded video object.",
"items": {
"anyOf": [
{
"$ref": "Clip.schema.json"
},
{
"$ref": "VideoObject.schema.json"
}
]
},
"type": "array"
},
"workExample": {
"description": "Example/instance/realization/derivation of the concept of this creative work. eg. The paperback edition, first edition, or eBook.",
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "CreativeWork",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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": "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 subscription which allows a user to access media including audio, video, books, etc.",
"properties": {
"authenticator": {
"$ref": "http://schema.org/Organization",
"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": "http://schema.org/Offer"
},
{
"items": {
"$ref": "http://schema.org/Offer"
},
"type": "array"
}
]
}
},
"title": "MediaSubscription",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/PostalAddress.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PostalAddress",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/ContactPoint",
"description": "A contact point\u2014for example, a Customer Complaints department."
}
],
"description": "The mailing address.",
"properties": {
"addressCountry": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/Country"
}
],
"description": "The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code."
},
"addressLocality": {
"description": "The locality in which the street address is, and which is in the region. For example, Mountain View.",
"type": "string"
},
"addressRegion": {
"description": "The region in which the locality is, and which is in the country. For example, California or another appropriate first-level Administrative division",
"type": "string"
},
"postOfficeBoxNumber": {
"description": "The post office box number for PO box addresses.",
"type": "string"
},
"postalCode": {
"description": "The postal code. For example, 94043.",
"type": "string"
},
"streetAddress": {
"description": "The street address. For example, 1600 Amphitheatre Pkwy.",
"type": "string"
}
},
"title": "PostalAddress",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/ArriveAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:ArriveAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:MoveAction",
"description": "The act of an agent relocating to a place.\\n\\nRelated actions:\\n\\n* [[TransferAction]]: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object."
}
],
"description": "The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants.",
"title": "ArriveAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/QualitativeValue.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/QualitativeValue",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Enumeration.schema.json",
"description": "Lists or enumerations\u2014for example, a list of cuisines or music genres, etc."
}
],
"description": "A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'.",
"format": "http://schema.org/QualitativeValue",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "QualitativeValue"
},
"additionalProperty": {
"description": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.",
"items": {
"$ref": "PropertyValue.schema.json"
},
"type": "array"
},
"equal": {
"description": "This ordering relation for qualitative values indicates that the subject is equal to the object.",
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
},
"greater": {
"description": "This ordering relation for qualitative values indicates that the subject is greater than the object.",
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
},
"greaterOrEqual": {
"description": "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.",
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
},
"lesser": {
"description": "This ordering relation for qualitative values indicates that the subject is lesser than the object.",
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
},
"lesserOrEqual": {
"description": "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.",
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
},
"nonEqual": {
"description": "This ordering relation for qualitative values indicates that the subject is not equal to the object.",
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
},
"valueReference": {
"description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.",
"items": {
"anyOf": [
{
"$ref": "Enumeration.schema.json"
},
{
"$ref": "PropertyValue.schema.json"
},
{
"$ref": "QualitativeValue.schema.json"
},
{
"$ref": "QuantitativeValue.schema.json"
},
{
"$ref": "StructuredValue.schema.json"
}
]
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "QualitativeValue",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | schemas/SoftwareSourceCode.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SoftwareSourceCode",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
"format": "http://schema.org/SoftwareSourceCode",
"properties": {
"codeRepository": {
"description": "Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).",
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
},
"codeSampleType": {
"description": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
"items": {
"type": "string"
},
"type": "array"
},
"programmingLanguage": {
"description": "The computer programming language.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "ComputerLanguage.schema.json"
}
]
},
"type": "array"
},
"runtime": {
"description": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).",
"type": "string"
},
"runtimePlatform": {
"description": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).",
"items": {
"type": "string"
},
"type": "array"
},
"sampleType": {
"description": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.",
"type": "string"
},
"targetProduct": {
"description": "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.",
"items": {
"$ref": "SoftwareApplication.schema.json"
},
"type": "array"
}
},
"title": "SoftwareSourceCode",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/WebSite.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WebSite",
"$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 WebSite is a set of related web pages and other items typically served from a single web domain and accessible via URLs.",
"format": "http://schema.org/WebSite",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "WebSite"
},
"issn": {
"description": "The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.",
"type": "string"
}
},
"required": [
"@type"
],
"title": "WebSite",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/TVEpisode.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TVEpisode",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Episode.schema.json",
"description": "A media episode (e.g. TV, radio, video game) which can be part of a series or season."
}
],
"description": "A TV episode which can be part of a series or season.",
"format": "http://schema.org/TVEpisode",
"properties": {
"countryOfOrigin": {
"$ref": "Country.schema.json",
"description": "The country of the principal offices of the production company or individual responsible for the movie or program."
},
"partOfTVSeries": {
"$ref": "TVSeries.schema.json",
"description": "The TV series to which this episode or season belongs."
}
},
"title": "TVEpisode",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/StructuredValue.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/StructuredValue",
"$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": "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.",
"format": "http://schema.org/StructuredValue",
"title": "StructuredValue",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/BedAndBreakfast.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:BedAndBreakfast",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:LodgingBusiness",
"description": "A lodging business, such as a motel, hotel, or inn."
}
],
"description": "Bed and breakfast.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n",
"title": "BedAndBreakfast",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/PayAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PayAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/TradeAction",
"description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment."
}
],
"description": "An agent pays a price to a participant.",
"format": "http://schema.org/PayAction",
"properties": {
"recipient": {
"description": "A sub property of participant. The participant who is at the receiving end of the action.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Audience"
},
{
"$ref": "http://schema.org/ContactPoint"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Audience"
},
{
"$ref": "http://schema.org/ContactPoint"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
"type": "array"
}
]
}
},
"title": "PayAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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": "http://schema.org/TradeAction",
"description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment."
}
],
"description": "An agent orders an object/product/service to be delivered/sent.",
"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": "OrderAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/BuyAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BuyAction",
"$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": "The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction.",
"format": "http://schema.org/BuyAction",
"properties": {
"seller": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider."
},
"vendor": {
"description": "'vendor' is an earlier term for 'seller'.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"warrantyPromise": {
"$ref": "WarrantyPromise.schema.json",
"description": "The warranty promise(s) included in the offer."
}
},
"title": "BuyAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | 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": "BusStation.schema.json"
},
{
"$ref": "BusStop.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": "BusStation.schema.json"
},
{
"$ref": "BusStop.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 | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/RsvpResponseType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/RsvpResponseType",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.",
"oneOf": [
{
"const": "RsvpResponseMaybe",
"description": "The invitee may or may not attend."
},
{
"const": "RsvpResponseNo",
"description": "The invitee will not attend."
},
{
"const": "RsvpResponseYes",
"description": "The invitee will attend."
}
],
"title": "RsvpResponseType",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/DiscoverAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DiscoverAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "FindAction.schema.json",
"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": "The act of discovering/finding an object.",
"format": "http://schema.org/DiscoverAction",
"title": "DiscoverAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/PublicationVolume.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PublicationVolume",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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 multi-volume work, often numbered. It may represent a time span, such as a year.\n\nSee also blog post.",
"properties": {
"pageEnd": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The page on which the work ends; for example \"138\" or \"xvi\"."
},
"pageStart": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The page on which the work starts; for example \"135\" or \"xiii\"."
},
"pagination": {
"description": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"volumeNumber": {
"description": "Identifies the volume of publication or multi-part work; for example, \"iii\" or \"2\".",
"oneOf": [
{
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
}
},
"title": "PublicationVolume",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/ActionStatusType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ActionStatusType",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "The status of an Action.",
"format": "http://schema.org/ActionStatusType",
"oneOf": [
{
"const": "ActiveActionStatus",
"description": "An in-progress action (e.g, while watching the movie, or driving to a location)."
},
{
"const": "CompletedActionStatus",
"description": "An action that has already taken place."
},
{
"const": "FailedActionStatus",
"description": "An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure."
},
{
"const": "PotentialActionStatus",
"description": "A description of an action that is supported."
}
],
"title": "ActionStatusType",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/BoatTrip.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:BoatTrip",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Trip",
"description": "A trip or journey. An itinerary of visits to one or more places."
}
],
"description": "A trip on a commercial ferry line.",
"properties": {
"arrivalBoatTerminal": {
"$ref": "schema:BoatTerminal",
"description": "The terminal or port from which the boat arrives."
},
"departureBoatTerminal": {
"$ref": "schema:BoatTerminal",
"description": "The terminal or port from which the boat departs."
}
},
"title": "BoatTrip",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/StructuredValue.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/StructuredValue",
"$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": "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.",
"format": "http://schema.org/StructuredValue",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "StructuredValue"
}
},
"required": [
"@type"
],
"title": "StructuredValue",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/AmusementPark.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AmusementPark",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/EntertainmentBusiness",
"description": "A business providing entertainment."
}
],
"description": "An amusement park.",
"title": "AmusementPark",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Landform.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Landform",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Place.schema.json",
"description": "Entities that have a somewhat fixed, physical extension."
}
],
"description": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.",
"format": "http://schema.org/Landform",
"title": "Landform",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/AdministrativeArea.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AdministrativeArea",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Place.schema.json",
"description": "Entities that have a somewhat fixed, physical extension."
}
],
"description": "A geographical region, typically under the jurisdiction of a particular government.",
"format": "http://schema.org/AdministrativeArea",
"title": "AdministrativeArea",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/HowToStep.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HowToStep",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CreativeWork",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
},
{
"$ref": "http://schema.org/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."
},
{
"$ref": "http://schema.org/ListItem",
"description": "An list item, e.g. a step in a checklist or how-to description."
}
],
"description": "A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.",
"format": "http://schema.org/HowToStep",
"title": "HowToStep",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/Brand.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Brand",
"$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 brand is a name used by an organization or business person for labeling a product, product group, or similar.",
"format": "http://schema.org/Brand",
"properties": {
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"logo": {
"description": "An associated logo.",
"items": {
"oneOf": [
{
"$ref": "ImageObject.schema.json"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"review": {
"description": "A review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"slogan": {
"description": "A slogan or motto associated with the item.",
"items": {
"type": "string"
},
"type": "array"
}
},
"title": "Brand",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Report.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Report",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/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."
}
],
"description": "A Report generated by governmental or non-governmental organization.",
"properties": {
"reportNumber": {
"description": "The number or other unique designator assigned to a Report by the publishing organization.",
"type": "string"
}
},
"title": "Report",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Flight.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Flight",
"$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": "An airline flight.",
"format": "http://schema.org/Flight",
"properties": {
"aircraft": {
"$ref": "Vehicle.schema.json",
"description": "The kind of aircraft (e.g., \"Boeing 747\")."
},
"arrivalAirport": {
"$ref": "Airport.schema.json",
"description": "The airport where the flight terminates."
},
"arrivalGate": {
"description": "Identifier of the flight's arrival gate.",
"format": "http://schema.org/Text"
},
"arrivalTerminal": {
"description": "Identifier of the flight's arrival terminal.",
"format": "http://schema.org/Text"
},
"boardingPolicy": {
"$ref": "BoardingPolicyType.schema.json",
"description": "The type of boarding policy used by the airline (e.g. zone-based or group-based)."
},
"carrier": {
"$ref": "Organization.schema.json",
"description": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights."
},
"departureAirport": {
"$ref": "Airport.schema.json",
"description": "The airport where the flight originates."
},
"departureGate": {
"description": "Identifier of the flight's departure gate.",
"format": "http://schema.org/Text"
},
"departureTerminal": {
"description": "Identifier of the flight's departure terminal.",
"format": "http://schema.org/Text"
},
"estimatedFlightDuration": {
"$ref": "Duration.schema.json",
"description": "The estimated time the flight will take."
},
"flightDistance": {
"$ref": "Distance.schema.json",
"description": "The distance of the flight."
},
"flightNumber": {
"description": "The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.",
"format": "http://schema.org/Text"
},
"mealService": {
"description": "Description of the meals that will be provided or available for purchase.",
"format": "http://schema.org/Text"
},
"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."
},
"webCheckinTime": {
"description": "The time when a passenger can check into the flight online.",
"format": "http://schema.org/DateTime"
}
},
"title": "Flight",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/AddAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:AddAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:UpdateAction",
"description": "The act of managing by changing/editing the state of the object."
}
],
"description": "The act of editing by adding an object to a collection.",
"title": "AddAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/3DModel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:3DModel",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:MediaObject",
"description": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's)."
}
],
"description": "A 3D model represents some kind of 3D content, which may have [[encoding]]s in one or more [[MediaObject]]s. Many 3D formats are available (e.g. see [Wikipedia](https://en.wikipedia.org/wiki/Category:3D_graphics_file_formats)); specific encoding formats can be represented using the [[encodingFormat]] property applied to the relevant [[MediaObject]]. For the\ncase of a single file published after Zip compression, the convention of appending '+zip' to the [[encodingFormat]] can be used. Geospatial, AR/VR, artistic/animation, gaming, engineering and scientific content can all be represented using [[3DModel]].",
"properties": {
"isResizable": {
"description": "Whether the 3DModel allows resizing. For example, room layout applications often do not allow 3DModel elements to be resized to reflect reality.",
"type": "boolean"
}
},
"title": "3DModel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Sculpture.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Sculpture",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A piece of sculpture.",
"format": "http://schema.org/Sculpture",
"title": "Sculpture",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/MenuItem.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MenuItem",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A food or drink item listed in a menu or menu section.",
"format": "http://schema.org/MenuItem",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "MenuItem"
},
"menuAddOn": {
"description": "Additional menu item(s) such as a side dish of salad or side order of fries that can be added to this menu item. Additionally it can be a menu section containing allowed add-on menu items for this menu item.",
"oneOf": [
{
"anyOf": [
{
"$ref": "MenuItem.schema.json"
},
{
"$ref": "MenuSection.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "MenuItem.schema.json"
},
{
"$ref": "MenuSection.schema.json"
}
]
},
"type": "array"
}
]
},
"nutrition": {
"$ref": "NutritionInformation.schema.json",
"description": "Nutrition information about the recipe or menu item."
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
"type": "array"
}
]
},
"suitableForDiet": {
"description": "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.",
"oneOf": [
{
"$ref": "RestrictedDiet.schema.json"
},
{
"items": {
"$ref": "RestrictedDiet.schema.json"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "MenuItem",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Message.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Message",
"$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 single message from a sender to one or more organizations or people.",
"format": "http://schema.org/Message",
"properties": {
"bccRecipient": {
"description": "A sub property of recipient. The recipient blind copied on a message.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/ContactPoint"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/ContactPoint"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
"type": "array"
}
]
},
"ccRecipient": {
"description": "A sub property of recipient. The recipient copied on a message.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/ContactPoint"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/ContactPoint"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
"type": "array"
}
]
},
"dateRead": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date/time at which the message has been read by the recipient if a single recipient exists."
},
"dateReceived": {
"description": "The date/time the message was received if a single recipient exists.",
"format": "date-time",
"type": "string"
},
"dateSent": {
"description": "The date/time at which the message was sent.",
"format": "date-time",
"type": "string"
},
"messageAttachment": {
"description": "A CreativeWork attached to the message.",
"oneOf": [
{
"$ref": "http://schema.org/CreativeWork"
},
{
"items": {
"$ref": "http://schema.org/CreativeWork"
},
"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"
}
]
},
"sender": {
"description": "A sub property of participant. The participant who is at the sending end of the action.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Audience"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Audience"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
"type": "array"
}
]
},
"toRecipient": {
"description": "A sub property of recipient. The recipient who was directly sent the message.",
"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": "Message",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | 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": "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/UserBlocks",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "UserBlocks"
}
},
"required": [
"@type"
],
"title": "UserBlocks",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/Clip.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Clip",
"$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 short TV or radio program or a segment/part of a program.",
"format": "http://schema.org/Clip",
"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"
},
"clipNumber": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "Position of the clip within an ordered group of clips."
},
"director": {
"$ref": "Person.schema.json",
"description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip."
},
"directors": {
"description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"musicBy": {
"anyOf": [
{
"$ref": "MusicGroup.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The composer of the soundtrack."
},
"partOfEpisode": {
"$ref": "Episode.schema.json",
"description": "The episode to which this clip belongs."
},
"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."
}
},
"title": "Clip",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ReplyAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ReplyAction",
"$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 responding to a question/message asked/sent by the object. Related to AskAction\n\nRelated actions:\n\n\nAskAction: Appears generally as an origin of a ReplyAction.\n\n",
"format": "http://schema.org/ReplyAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ReplyAction"
},
"resultComment": {
"description": "A sub property of result. The Comment created or sent as a result of this action.",
"items": {
"$ref": "Comment.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "ReplyAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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": "http://schema.org/SportsActivityLocation",
"description": "A sports location, such as a playing field."
}
],
"description": "A ski resort.",
"title": "SkiResort",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/AutoDealer.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AutoDealer",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AutomotiveBusiness.schema.json",
"description": "Car repair, sales, or parts."
}
],
"description": "An car dealership.",
"format": "http://schema.org/AutoDealer",
"title": "AutoDealer",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/QuoteAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/QuoteAction",
"$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 quotes/estimates/appraises an object/product/service with a price at a location/store.",
"format": "http://schema.org/QuoteAction",
"title": "QuoteAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ShoeStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ShoeStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A shoe store.",
"format": "http://schema.org/ShoeStore",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ShoeStore"
}
},
"required": [
"@type"
],
"title": "ShoeStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/GovernmentService.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/GovernmentService",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Service.schema.json",
"description": "A service provided by an organization, e.g. delivery service, print services, etc."
}
],
"description": "A service provided by a government organization, e.g. food stamps, veterans benefits, etc.",
"format": "http://schema.org/GovernmentService",
"properties": {
"serviceOperator": {
"$ref": "Organization.schema.json",
"description": "The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor."
}
},
"title": "GovernmentService",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/QualitativeValue.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/QualitativeValue",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'.",
"format": "http://schema.org/QualitativeValue",
"properties": {
"additionalProperty": {
"description": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.",
"oneOf": [
{
"$ref": "PropertyValue.schema.json"
},
{
"items": {
"$ref": "PropertyValue.schema.json"
},
"type": "array"
}
]
},
"equal": {
"description": "This ordering relation for qualitative values indicates that the subject is equal to the object.",
"oneOf": [
{
"$ref": "QualitativeValue.schema.json"
},
{
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
}
]
},
"greater": {
"description": "This ordering relation for qualitative values indicates that the subject is greater than the object.",
"oneOf": [
{
"$ref": "QualitativeValue.schema.json"
},
{
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
}
]
},
"greaterOrEqual": {
"description": "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.",
"oneOf": [
{
"$ref": "QualitativeValue.schema.json"
},
{
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
}
]
},
"lesser": {
"description": "This ordering relation for qualitative values indicates that the subject is lesser than the object.",
"oneOf": [
{
"$ref": "QualitativeValue.schema.json"
},
{
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
}
]
},
"lesserOrEqual": {
"description": "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.",
"oneOf": [
{
"$ref": "QualitativeValue.schema.json"
},
{
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
}
]
},
"nonEqual": {
"description": "This ordering relation for qualitative values indicates that the subject is not equal to the object.",
"oneOf": [
{
"$ref": "QualitativeValue.schema.json"
},
{
"items": {
"$ref": "QualitativeValue.schema.json"
},
"type": "array"
}
]
},
"valueReference": {
"description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Enumeration.schema.json"
},
{
"$ref": "PropertyValue.schema.json"
},
{
"$ref": "QualitativeValue.schema.json"
},
{
"$ref": "QuantitativeValue.schema.json"
},
{
"$ref": "StructuredValue.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Enumeration.schema.json"
},
{
"$ref": "PropertyValue.schema.json"
},
{
"$ref": "QualitativeValue.schema.json"
},
{
"$ref": "QuantitativeValue.schema.json"
},
{
"$ref": "StructuredValue.schema.json"
}
]
},
"type": "array"
}
]
}
},
"title": "QualitativeValue",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/ComedyEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ComedyEvent",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Event",
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects."
}
],
"description": "Event type: Comedy event.",
"format": "http://schema.org/ComedyEvent",
"title": "ComedyEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/OwnershipInfo.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:OwnershipInfo",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:StructuredValue",
"description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing."
}
],
"description": "A structured value providing information about when a certain organization or person owned a certain product.",
"properties": {
"acquiredFrom": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
],
"description": "The organization or person from which the product was acquired."
},
"ownedFrom": {
"description": "The date and time of obtaining the product.",
"format": "date-time",
"type": "string"
},
"ownedThrough": {
"description": "The date and time of giving up ownership on the product.",
"format": "date-time",
"type": "string"
},
"typeOfGood": {
"anyOf": [
{
"$ref": "schema:Product"
},
{
"$ref": "schema:Service"
}
],
"description": "The product that this structured value is referring to."
}
},
"title": "OwnershipInfo",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/InsertAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/InsertAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AddAction.schema.json",
"description": "The act of editing by adding an object to a collection."
}
],
"description": "The act of adding at a specific location in an ordered collection.",
"format": "http://schema.org/InsertAction",
"properties": {
"toLocation": {
"description": "A sub property of location. The final location of the object or the agent after the action.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
}
},
"title": "InsertAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/MenuItem.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MenuItem",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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 food or drink item listed in a menu or menu section.",
"format": "http://schema.org/MenuItem",
"properties": {
"menuAddOn": {
"description": "Additional menu item(s) such as a side dish of salad or side order of fries that can be added to this menu item. Additionally it can be a menu section containing allowed add-on menu items for this menu item.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/MenuItem"
},
{
"$ref": "http://schema.org/MenuSection"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/MenuItem"
},
{
"$ref": "http://schema.org/MenuSection"
}
]
},
"type": "array"
}
]
},
"nutrition": {
"$ref": "http://schema.org/NutritionInformation",
"description": "Nutrition information about the recipe or menu item."
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Demand"
},
{
"$ref": "http://schema.org/Offer"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Demand"
},
{
"$ref": "http://schema.org/Offer"
}
]
},
"type": "array"
}
]
},
"suitableForDiet": {
"description": "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.",
"oneOf": [
{
"$ref": "http://schema.org/RestrictedDiet"
},
{
"items": {
"$ref": "http://schema.org/RestrictedDiet"
},
"type": "array"
}
]
}
},
"title": "MenuItem",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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": "TransferAction.schema.json",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another."
}
],
"description": "The act of physically/electronically 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",
"format": "http://schema.org/SendAction",
"properties": {
"deliveryMethod": {
"description": "A sub property of instrument. The method of delivery.",
"items": {
"$ref": "DeliveryMethod.schema.json"
},
"type": "array"
},
"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": "SendAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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 | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/RegisterAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/RegisterAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/InteractAction",
"description": "The act of interacting with another person or organization."
}
],
"description": "The act of registering to be a user of a service, product or web page.\n\nRelated actions:\n\n\nJoinAction: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, not a group/team of people.\n[FollowAction]]: Unlike FollowAction, RegisterAction doesn't imply that the agent is expecting to poll for updates from the object.\nSubscribeAction: Unlike SubscribeAction, RegisterAction doesn't imply that the agent is expecting updates from the object.\n\n",
"title": "RegisterAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Reservation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Reservation",
"$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": "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.",
"format": "http://schema.org/Reservation",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Reservation"
},
"bookingAgent": {
"description": "'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"bookingTime": {
"description": "The date and time the reservation was booked.",
"format": "date-time",
"type": "string"
},
"broker": {
"description": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"modifiedTime": {
"description": "The date and time the reservation was modified.",
"format": "date-time",
"type": "string"
},
"priceCurrency": {
"description": "The currency of the price, or a price component when attached to PriceSpecification and its subtypes.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".",
"type": "string"
},
"programMembershipUsed": {
"description": "Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.",
"items": {
"$ref": "ProgramMembership.schema.json"
},
"type": "array"
},
"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."
},
"reservationFor": {
"$ref": "Thing.schema.json",
"description": "The thing -- flight, event, restaurant,etc. being reserved."
},
"reservationId": {
"description": "A unique identifier for the reservation.",
"items": {
"type": "string"
},
"type": "array"
},
"reservationStatus": {
"$ref": "ReservationStatusType.schema.json",
"description": "The current status of the reservation."
},
"reservedTicket": {
"description": "A ticket associated with the reservation.",
"items": {
"$ref": "Ticket.schema.json"
},
"type": "array"
},
"totalPrice": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
},
{
"$ref": "PriceSpecification.schema.json"
}
],
"description": "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\n\nUsage guidelines:\n\n\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n"
},
"underName": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The person or organization the reservation or ticket is for."
}
},
"required": [
"@type"
],
"title": "Reservation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/CafeOrCoffeeShop.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CafeOrCoffeeShop",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "FoodEstablishment.schema.json",
"description": "A food-related business."
}
],
"description": "A cafe or coffee shop.",
"format": "http://schema.org/CafeOrCoffeeShop",
"title": "CafeOrCoffeeShop",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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.",
"title": "AutoWash",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/DiscoverAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DiscoverAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "FindAction.schema.json",
"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": "The act of discovering/finding an object.",
"format": "http://schema.org/DiscoverAction",
"title": "DiscoverAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/SocialMediaPosting.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SocialMediaPosting",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Article.schema.json",
"description": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\n\nSee also blog post."
}
],
"description": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.",
"format": "http://schema.org/SocialMediaPosting",
"properties": {
"sharedContent": {
"description": "A CreativeWork such as an image, video, or audio clip shared as part of this posting.",
"oneOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
}
]
}
},
"title": "SocialMediaPosting",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/DeleteAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DeleteAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "UpdateAction.schema.json",
"description": "The act of managing by changing/editing the state of the object."
}
],
"description": "The act of editing a recipient by removing one of its objects.",
"format": "http://schema.org/DeleteAction",
"title": "DeleteAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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": "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 rating is an evaluation on a numeric scale, such as 1 to 5 stars.",
"properties": {
"author": {
"anyOf": [
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
],
"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 | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/FindAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/FindAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Action",
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document."
}
],
"description": "The act of finding an object.\n\nRelated actions:\n\n\nSearchAction: FindAction is generally lead by a SearchAction, but not necessarily.\n\n",
"format": "http://schema.org/FindAction",
"title": "FindAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | schemas/QuantitativeValue.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/QuantitativeValue",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "StructuredValue.schema.json",
"description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing."
}
],
"description": "A point value or interval for product characteristics and other purposes.",
"format": "http://schema.org/QuantitativeValue",
"properties": {
"additionalProperty": {
"description": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.",
"items": {
"$ref": "PropertyValue.schema.json"
},
"type": "array"
},
"maxValue": {
"description": "The upper value of some characteristic or property.",
"type": "number"
},
"minValue": {
"description": "The lower value of some characteristic or property.",
"type": "number"
},
"unitCode": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon."
},
"unitText": {
"description": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.",
"items": {
"type": "string"
},
"type": "array"
},
"value": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "number"
},
{
"type": "string"
},
{
"$ref": "StructuredValue.schema.json"
}
],
"description": "The value of the quantitative value or property value node.\n\n\nFor QuantitativeValue and MonetaryAmount, the recommended type for values is 'Number'.\nFor PropertyValue, it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n"
},
"valueReference": {
"description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.",
"items": {
"anyOf": [
{
"$ref": "Enumeration.schema.json"
},
{
"$ref": "PropertyValue.schema.json"
},
{
"$ref": "QualitativeValue.schema.json"
},
{
"$ref": "QuantitativeValue.schema.json"
},
{
"$ref": "StructuredValue.schema.json"
}
]
},
"type": "array"
}
},
"title": "QuantitativeValue",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | 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.",
"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 | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/CivicStructure.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:CivicStructure",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Place",
"description": "Entities that have a somewhat fixed, physical extension."
}
],
"description": "A public structure, such as a town hall or concert hall.",
"properties": {
"openingHours": {
"description": "The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.\\n\\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \\n* Here is an example: <time itemprop=\"openingHours\" datetime=\"Tu,Th 16:00-20:00\">Tuesdays and Thursdays 4-8pm</time>.\\n* If a business is open 7 days a week, then it can be specified as <time itemprop=\"openingHours\" datetime=\"Mo-Su\">Monday through Sunday, all day</time>.",
"type": "string"
}
},
"title": "CivicStructure",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Researcher.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Researcher",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Audience",
"description": "Intended audience for an item, i.e. the group for whom the item was created."
}
],
"description": "Researchers.",
"title": "Researcher",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Store.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Store",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "LocalBusiness.schema.json",
"description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc."
}
],
"description": "A retail good store.",
"format": "http://schema.org/Store",
"title": "Store",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/SocialEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SocialEvent",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Event.schema.json",
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects."
}
],
"description": "Event type: Social event.",
"format": "http://schema.org/SocialEvent",
"title": "SocialEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/WearAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WearAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "UseAction.schema.json",
"description": "The act of applying an object to its intended purpose."
}
],
"description": "The act of dressing oneself in clothing.",
"format": "http://schema.org/WearAction",
"title": "WearAction",
"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.