repository
stringclasses 528
values | commit
stringlengths 40
40
| commitDate
timestamp[s] | path
stringlengths 11
149
| repoStars
int64 5
94.9k
| repoLastFetched
stringclasses 528
values | content
stringlengths 48
736k
| license
stringclasses 14
values | language
stringclasses 7
values |
---|---|---|---|---|---|---|---|---|
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/DanceEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DanceEvent",
"$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: A social dance.",
"format": "http://schema.org/DanceEvent",
"title": "DanceEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/BookFormatType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BookFormatType",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "The publication format of the book.",
"format": "http://schema.org/BookFormatType",
"oneOf": [
{
"const": "AudiobookFormat",
"description": "Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties."
},
{
"const": "EBook",
"description": "Book format: Ebook."
},
{
"const": "Hardcover",
"description": "Book format: Hardcover."
},
{
"const": "Paperback",
"description": "Book format: Paperback."
}
],
"title": "BookFormatType",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/JoinAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/JoinAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "InteractAction.schema.json",
"description": "The act of interacting with another person or organization."
}
],
"description": "An agent joins an event/group with participants/friends at a location.\n\nRelated actions:\n\n\nRegisterAction: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\nSubscribeAction: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\nFollowAction: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates.\n\n",
"format": "http://schema.org/JoinAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "JoinAction"
},
"event": {
"description": "Upcoming or past event associated with this place, organization, or action.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "JoinAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/DeactivateAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DeactivateAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "ControlAction.schema.json",
"description": "An agent controls a device or application."
}
],
"description": "The act of stopping or deactivating a device or application (e.g. stopping a timer or turning off a flashlight).",
"format": "http://schema.org/DeactivateAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "DeactivateAction"
}
},
"required": [
"@type"
],
"title": "DeactivateAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/PublicSwimmingPool.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PublicSwimmingPool",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "SportsActivityLocation.schema.json",
"description": "A sports location, such as a playing field."
}
],
"description": "A public swimming pool.",
"format": "http://schema.org/PublicSwimmingPool",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "PublicSwimmingPool"
}
},
"required": [
"@type"
],
"title": "PublicSwimmingPool",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/ArriveAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ArriveAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/MoveAction",
"description": "The act of an agent relocating to a place.\n\nRelated actions:\n\n\nTransferAction: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.\n\n"
}
],
"description": "The act of arriving at a place. An agent arrives at a destination from a fromLocation, optionally with participants.",
"format": "http://schema.org/ArriveAction",
"title": "ArriveAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ShoppingCenter.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ShoppingCenter",
"$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 shopping center or mall.",
"format": "http://schema.org/ShoppingCenter",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ShoppingCenter"
}
},
"required": [
"@type"
],
"title": "ShoppingCenter",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/ParcelDelivery.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ParcelDelivery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "The delivery of a parcel either via the postal service or a commercial service.",
"format": "http://schema.org/ParcelDelivery",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ParcelDelivery"
},
"carrier": {
"$ref": "Organization.schema.json",
"description": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights."
},
"deliveryAddress": {
"$ref": "PostalAddress.schema.json",
"description": "Destination address."
},
"deliveryStatus": {
"description": "New entry added as the package passes through each leg of its journey (from shipment to final delivery).",
"oneOf": [
{
"$ref": "DeliveryEvent.schema.json"
},
{
"items": {
"$ref": "DeliveryEvent.schema.json"
},
"type": "array"
}
]
},
"expectedArrivalFrom": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The earliest date the package may arrive."
},
"expectedArrivalUntil": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The latest date the package may arrive."
},
"hasDeliveryMethod": {
"$ref": "DeliveryMethod.schema.json",
"description": "Method used for delivery or shipping."
},
"itemShipped": {
"description": "Item(s) being shipped.",
"oneOf": [
{
"$ref": "Product.schema.json"
},
{
"items": {
"$ref": "Product.schema.json"
},
"type": "array"
}
]
},
"originAddress": {
"$ref": "PostalAddress.schema.json",
"description": "Shipper's address."
},
"partOfOrder": {
"$ref": "Order.schema.json",
"description": "The overall order the items in this delivery were included in."
},
"provider": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller."
},
"trackingNumber": {
"description": "Shipper tracking number.",
"type": "string"
},
"trackingUrl": {
"description": "Tracking url for the parcel delivery.",
"format": "uri",
"type": "string"
}
},
"required": [
"@type"
],
"title": "ParcelDelivery",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/PhotographAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:PhotographAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:CreateAction",
"description": "The act of deliberately creating/producing/generating/building a result out of the agent."
}
],
"description": "The act of capturing still images of objects using a camera.",
"title": "PhotographAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/WinAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WinAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AchieveAction.schema.json",
"description": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process."
}
],
"description": "The act of achieving victory in a competitive activity.",
"format": "http://schema.org/WinAction",
"properties": {
"loser": {
"description": "A sub property of participant. The loser of the action.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
},
"title": "WinAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Service.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Service",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Intangible",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A service provided by an organization, e.g. delivery service, print services, etc.",
"properties": {
"aggregateRating": {
"$ref": "schema:AggregateRating",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"areaServed": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:AdministrativeArea"
},
{
"$ref": "schema:GeoShape"
},
{
"$ref": "schema:Place"
}
],
"description": "The geographic area where a service or offered item is provided."
},
"audience": {
"$ref": "schema:Audience",
"description": "An intended audience, i.e. a group for whom something was created."
},
"availableChannel": {
"description": "A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).",
"oneOf": [
{
"$ref": "schema:ServiceChannel"
},
{
"items": {
"$ref": "schema:ServiceChannel"
},
"type": "array"
}
]
},
"award": {
"description": "An award won by or for this item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"brand": {
"anyOf": [
{
"$ref": "schema:Brand"
},
{
"$ref": "schema:Organization"
}
],
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person."
},
"broker": {
"description": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
"type": "array"
}
]
},
"category": {
"description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "schema:PhysicalActivityCategory"
},
{
"$ref": "schema:Thing"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "schema:PhysicalActivityCategory"
},
{
"$ref": "schema:Thing"
}
]
},
"type": "array"
}
]
},
"hasOfferCatalog": {
"description": "Indicates an OfferCatalog listing for this Organization, Person, or Service.",
"oneOf": [
{
"$ref": "schema:OfferCatalog"
},
{
"items": {
"$ref": "schema:OfferCatalog"
},
"type": "array"
}
]
},
"hoursAvailable": {
"$ref": "schema:OpeningHoursSpecification",
"description": "The hours during which this service or contact is available."
},
"isRelatedTo": {
"description": "A pointer to another, somehow related product (or multiple products).",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Product"
},
{
"$ref": "schema:Service"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Product"
},
{
"$ref": "schema:Service"
}
]
},
"type": "array"
}
]
},
"isSimilarTo": {
"description": "A pointer to another, functionally similar product (or multiple products).",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Product"
},
{
"$ref": "schema:Service"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Product"
},
{
"$ref": "schema:Service"
}
]
},
"type": "array"
}
]
},
"logo": {
"description": "An associated logo.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:ImageObject"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:ImageObject"
}
]
},
"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.\n ",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Demand"
},
{
"$ref": "schema:Offer"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Demand"
},
{
"$ref": "schema:Offer"
}
]
},
"type": "array"
}
]
},
"produces": {
"$ref": "schema:Thing",
"description": "The tangible thing generated by the service, e.g. a passport, permit, etc."
},
"provider": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
],
"description": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller."
},
"providerMobility": {
"description": "Indicates the mobility of a provided service (e.g. 'static', 'dynamic').",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"review": {
"description": "A review of the item.",
"oneOf": [
{
"$ref": "schema:Review"
},
{
"items": {
"$ref": "schema:Review"
},
"type": "array"
}
]
},
"serviceArea": {
"anyOf": [
{
"$ref": "schema:AdministrativeArea"
},
{
"$ref": "schema:GeoShape"
},
{
"$ref": "schema:Place"
}
],
"description": "The geographic area where the service is provided."
},
"serviceAudience": {
"$ref": "schema:Audience",
"description": "The audience eligible for this service."
},
"serviceOutput": {
"$ref": "schema:Thing",
"description": "The tangible thing generated by the service, e.g. a passport, permit, etc."
},
"serviceType": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:GovernmentBenefitsType"
}
],
"description": "The type of service being offered, e.g. veterans' benefits, emergency relief, etc."
},
"slogan": {
"description": "A slogan or motto associated with the item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"termsOfService": {
"description": "Human-readable terms of service documentation.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
}
},
"title": "Service",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/CivicStructure.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CivicStructure",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Place",
"description": "Entities that have a somewhat fixed, physical extension."
}
],
"description": "A public structure, such as a town hall or concert hall.",
"format": "http://schema.org/CivicStructure",
"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\nDays are specified using the following two-letter combinations: Mo, Tu, We, Th, Fr, Sa, Su.\nTimes are specified using 24:00 time. For example, 3pm is specified as 15:00. \nHere is an example: <time itemprop=\"openingHours\" datetime=\"Tu,Th 16:00-20:00\">Tuesdays and Thursdays 4-8pm</time>.\nIf a business is open 7 days a week, then it can be specified as <time itemprop=\"openingHours\" datetime=\"Mo-Su\">Monday through Sunday, all day</time>.\n\n",
"type": "string"
}
},
"title": "CivicStructure",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/URL.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/URL",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Text.schema.json",
"description": "Data type: Text."
}
],
"description": "Data type: URL.",
"format": "http://schema.org/URL",
"title": "URL",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/Rating.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Rating",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A rating is an evaluation on a numeric scale, such as 1 to 5 stars.",
"format": "http://schema.org/Rating",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Rating"
},
"author": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably."
},
"bestRating": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed."
},
"ratingValue": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The rating for the content.\n\nUsage guidelines:\n\n\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n"
},
"reviewAspect": {
"description": "This Review or Rating is relevant to this part or facet of the itemReviewed.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"worstRating": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed."
}
},
"required": [
"@type"
],
"title": "Rating",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/HowToTip.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HowToTip",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CreativeWork",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
},
{
"$ref": "http://schema.org/ListItem",
"description": "An list item, e.g. a step in a checklist or how-to description."
}
],
"description": "An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection).",
"format": "http://schema.org/HowToTip",
"title": "HowToTip",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Duration.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Duration",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Quantity.schema.json",
"description": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'."
}
],
"description": "Quantity: Duration (use ISO 8601 duration format).",
"format": "http://schema.org/Duration",
"title": "Duration",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/GroceryStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/GroceryStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Store",
"description": "A retail good store."
}
],
"description": "A grocery store.",
"title": "GroceryStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/TravelAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TravelAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/MoveAction",
"description": "The act of an agent relocating to a place.\n\nRelated actions:\n\n\nTransferAction: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.\n\n"
}
],
"description": "The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants.",
"format": "http://schema.org/TravelAction",
"properties": {
"distance": {
"description": "The distance travelled, e.g. exercising or travelling.",
"oneOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"items": {
"format": "https://schema.org/Distance",
"type": "string"
},
"type": "array"
}
]
}
},
"title": "TravelAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/Organization.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Organization",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"description": "An organization such as a school, NGO, corporation, club, etc.",
"format": "http://schema.org/Organization",
"properties": {
"address": {
"anyOf": [
{
"$ref": "PostalAddress.schema.json"
},
{
"type": "string"
}
],
"description": "Physical address of the item."
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"alumni": {
"description": "Alumni of an organization.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"areaServed": {
"anyOf": [
{
"$ref": "AdministrativeArea.schema.json"
},
{
"$ref": "GeoShape.schema.json"
},
{
"$ref": "Place.schema.json"
},
{
"type": "string"
}
],
"description": "The geographic area where a service or offered item is provided."
},
"award": {
"description": "An award won by or for this item.",
"items": {
"type": "string"
},
"type": "array"
},
"awards": {
"description": "Awards won by or for this item.",
"items": {
"type": "string"
},
"type": "array"
},
"brand": {
"anyOf": [
{
"$ref": "Brand.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person."
},
"contactPoint": {
"description": "A contact point for a person or organization.",
"items": {
"$ref": "ContactPoint.schema.json"
},
"type": "array"
},
"contactPoints": {
"description": "A contact point for a person or organization.",
"items": {
"$ref": "ContactPoint.schema.json"
},
"type": "array"
},
"department": {
"description": "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.",
"items": {
"$ref": "Organization.schema.json"
},
"type": "array"
},
"dissolutionDate": {
"description": "The date that this organization was dissolved.",
"format": "date",
"type": "string"
},
"duns": {
"description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
"type": "string"
},
"email": {
"description": "Email address.",
"items": {
"type": "string"
},
"type": "array"
},
"employee": {
"description": "Someone working for this organization.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"employees": {
"description": "People working for this organization.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"event": {
"description": "Upcoming or past event associated with this place, organization, or action.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"events": {
"description": "Upcoming or past events associated with this place or organization.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"faxNumber": {
"description": "The fax number.",
"type": "string"
},
"founder": {
"description": "A person who founded this organization.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"founders": {
"description": "A person who founded this organization.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"foundingDate": {
"description": "The date that this organization was founded.",
"format": "date",
"type": "string"
},
"foundingLocation": {
"$ref": "Place.schema.json",
"description": "The place where the Organization was founded."
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"globalLocationNumber": {
"description": "The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.",
"type": "string"
},
"hasOfferCatalog": {
"description": "Indicates an OfferCatalog listing for this Organization, Person, or Service.",
"items": {
"$ref": "OfferCatalog.schema.json"
},
"type": "array"
},
"hasPOS": {
"description": "Points-of-Sales operated by the organization or person.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"interactionStatistic": {
"$ref": "InteractionCounter.schema.json",
"description": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used."
},
"isicV4": {
"description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
"type": "string"
},
"legalName": {
"description": "The official name of the organization, e.g. the registered company name.",
"type": "string"
},
"leiCode": {
"description": "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.",
"items": {
"type": "string"
},
"type": "array"
},
"location": {
"anyOf": [
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
},
{
"type": "string"
}
],
"description": "The location of for example where the event is happening, an organization is located, or where an action takes place."
},
"logo": {
"description": "An associated logo.",
"items": {
"anyOf": [
{
"$ref": "ImageObject.schema.json"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"makesOffer": {
"description": "A pointer to products or services offered by the organization or person.",
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
},
"member": {
"description": "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"memberOf": {
"description": "An Organization (or ProgramMembership) to which this Person or Organization belongs.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "ProgramMembership.schema.json"
}
]
},
"type": "array"
},
"members": {
"description": "A member of this organization.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"naics": {
"description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
"type": "string"
},
"numberOfEmployees": {
"$ref": "QuantitativeValue.schema.json",
"description": "The number of employees in an organization e.g. business."
},
"owns": {
"description": "Products owned by the organization or person.",
"items": {
"anyOf": [
{
"$ref": "OwnershipInfo.schema.json"
},
{
"$ref": "Product.schema.json"
}
]
},
"type": "array"
},
"parentOrganization": {
"$ref": "Organization.schema.json",
"description": "The larger organization that this organization is a subOrganization of, if any."
},
"publishingPrinciples": {
"anyOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"format": "uri",
"type": "string"
}
],
"description": "The publishingPrinciples property indicates (typically via URL) a document describing the editorial principles of an Organization (or individual e.g. a Person writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a CreativeWork (e.g. NewsArticle) the principles are those of the party primarily responsible for the creation of the CreativeWork.\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a funder) can be expressed using schema.org terminology."
},
"review": {
"description": "A review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"reviews": {
"description": "Review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"seeks": {
"description": "A pointer to products or services sought by the organization or person (demand).",
"items": {
"$ref": "Demand.schema.json"
},
"type": "array"
},
"serviceArea": {
"anyOf": [
{
"$ref": "AdministrativeArea.schema.json"
},
{
"$ref": "GeoShape.schema.json"
},
{
"$ref": "Place.schema.json"
}
],
"description": "The geographic area where the service is provided."
},
"slogan": {
"description": "A slogan or motto associated with the item.",
"items": {
"type": "string"
},
"type": "array"
},
"sponsor": {
"description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"subOrganization": {
"description": "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.",
"items": {
"$ref": "Organization.schema.json"
},
"type": "array"
},
"taxID": {
"description": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
"type": "string"
},
"telephone": {
"description": "The telephone number.",
"type": "string"
},
"vatID": {
"description": "The Value-added Tax ID of the organization or person.",
"type": "string"
}
},
"title": "Organization",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/LegalService.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LegalService",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/LocalBusiness",
"description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc."
}
],
"description": "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s).",
"title": "LegalService",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/DrawAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DrawAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreateAction.schema.json",
"description": "The act of deliberately creating/producing/generating/building a result out of the agent."
}
],
"description": "The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.",
"format": "http://schema.org/DrawAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "DrawAction"
}
},
"required": [
"@type"
],
"title": "DrawAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Distance.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Distance",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Quantity.schema.json",
"description": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'."
}
],
"description": "Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'.",
"format": "http://schema.org/Distance",
"title": "Distance",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/ArriveAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ArriveAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/MoveAction",
"description": "The act of an agent relocating to a place.\n\nRelated actions:\n\n\nTransferAction: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.\n\n"
}
],
"description": "The act of 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 | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/PrependAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PrependAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/InsertAction",
"description": "The act of adding at a specific location in an ordered collection."
}
],
"description": "The act of inserting at the beginning if an ordered collection.",
"format": "http://schema.org/PrependAction",
"title": "PrependAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/Airport.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Airport",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CivicStructure.schema.json",
"description": "A public structure, such as a town hall or concert hall."
}
],
"description": "An airport.",
"format": "http://schema.org/Airport",
"properties": {
"iataCode": {
"description": "IATA identifier for an airline or airport.",
"items": {
"type": "string"
},
"type": "array"
},
"icaoCode": {
"description": "ICAO identifier for an airport.",
"items": {
"type": "string"
},
"type": "array"
}
},
"title": "Airport",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/Action.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Action",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document.",
"format": "http://schema.org/Action",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Action"
},
"actionStatus": {
"description": "Indicates the current disposition of the Action.",
"oneOf": [
{
"$ref": "ActionStatusType.schema.json"
},
{
"items": {
"$ref": "ActionStatusType.schema.json"
},
"type": "array"
}
]
},
"agent": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The direct performer or driver of the action (animate or inanimate). e.g. John wrote a book."
},
"endTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions."
},
"error": {
"description": "For failed actions, more information on the cause of the failure.",
"oneOf": [
{
"$ref": "Thing.schema.json"
},
{
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
}
]
},
"instrument": {
"$ref": "Thing.schema.json",
"description": "The object that helped the agent perform the action. e.g. John wrote a book with a pen."
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
}
],
"description": "The location of for example where the event is happening, an organization is located, or where an action takes place."
},
"object": {
"$ref": "Thing.schema.json",
"description": "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read a book."
},
"participant": {
"description": "Other co-agents that participated in the action indirectly. e.g. John wrote a book with Steve.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"result": {
"$ref": "Thing.schema.json",
"description": "The result produced in the action. e.g. John wrote a book."
},
"startTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions."
},
"target": {
"description": "Indicates a target EntryPoint for an Action.",
"oneOf": [
{
"$ref": "EntryPoint.schema.json"
},
{
"items": {
"$ref": "EntryPoint.schema.json"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "Action",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/EducationEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:EducationEvent",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Event",
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects."
}
],
"description": "Event type: Education event.",
"properties": {
"assesses": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:DefinedTerm"
}
],
"description": "The item being described is intended to assess the competency or learning outcome defined by the referenced term."
},
"educationalLevel": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "schema:DefinedTerm"
}
],
"description": "The level in terms of progression through an educational or training context. Examples of educational levels include 'beginner', 'intermediate' or 'advanced', and formal sets of level indicators."
},
"teaches": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:DefinedTerm"
}
],
"description": "The item being described is intended to help a person learn the competency or learning outcome defined by the referenced term."
}
},
"title": "EducationEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/MovieClip.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MovieClip",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Clip",
"description": "A short TV or radio program or a segment/part of a program."
}
],
"description": "A short segment/part of a movie.",
"title": "MovieClip",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | 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."
}
],
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "DeliveryMethod"
}
},
"required": [
"@type"
],
"title": "DeliveryMethod",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Periodical.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Periodical",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CreativeWorkSeries",
"description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike ItemList which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\n\nSpecific subtypes are available for describing TVSeries, RadioSeries, MovieSeries, BookSeries, Periodical and VideoGameSeries. In each case, the hasPart / isPartOf properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\n\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate."
}
],
"description": "A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely.\n\nSee also blog post.",
"format": "http://schema.org/Periodical",
"title": "Periodical",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Preschool.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Preschool",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/EducationalOrganization",
"description": "An educational organization."
}
],
"description": "A preschool.",
"format": "http://schema.org/Preschool",
"title": "Preschool",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Enumeration.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Enumeration",
"$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": "Lists or enumerations\u2014for example, a list of cuisines or music genres, etc.",
"format": "http://schema.org/Enumeration",
"title": "Enumeration",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Pharmacy.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Pharmacy",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MedicalOrganization.schema.json",
"description": "A medical organization (physical or not), such as hospital, institution or clinic."
}
],
"description": "A pharmacy or drugstore.",
"format": "http://schema.org/Pharmacy",
"title": "Pharmacy",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/DownloadAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:DownloadAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:TransferAction",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another."
}
],
"description": "The act of downloading an object.",
"title": "DownloadAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/ImageGallery.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ImageGallery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MediaGallery.schema.json",
"description": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia."
}
],
"description": "Web page type: Image gallery page.",
"format": "http://schema.org/ImageGallery",
"title": "ImageGallery",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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.",
"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 | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/StadiumOrArena.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/StadiumOrArena",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CivicStructure.schema.json",
"description": "A public structure, such as a town hall or concert hall."
},
{
"$ref": "SportsActivityLocation.schema.json",
"description": "A sports location, such as a playing field."
}
],
"description": "A stadium.",
"format": "http://schema.org/StadiumOrArena",
"title": "StadiumOrArena",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Mountain.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Mountain",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Landform",
"description": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins."
}
],
"description": "A mountain, like Mount Whitney or Mount Everest.",
"format": "http://schema.org/Mountain",
"title": "Mountain",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/BedType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BedType",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/QualitativeValue",
"description": "A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'."
}
],
"description": "A type of bed. This is used for indicating the bed or beds available in an accommodation.",
"title": "BedType",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/OfferCatalog.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/OfferCatalog",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "ItemList.schema.json",
"description": "A list of items of any sort\u2014for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting."
}
],
"description": "An OfferCatalog is an ItemList that contains related Offers and/or further OfferCatalogs that are offeredBy the same provider.",
"format": "http://schema.org/OfferCatalog",
"title": "OfferCatalog",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Preschool.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Preschool",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "EducationalOrganization.schema.json",
"description": "An educational organization."
}
],
"description": "A preschool.",
"format": "http://schema.org/Preschool",
"title": "Preschool",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/LiveBlogPosting.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LiveBlogPosting",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "BlogPosting.schema.json",
"description": "A blog post."
}
],
"description": "A blog post intended to provide a rolling textual coverage of an ongoing event through continuous updates.",
"format": "http://schema.org/LiveBlogPosting",
"properties": {
"coverageEndTime": {
"description": "The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.",
"format": "date-time",
"type": "string"
},
"coverageStartTime": {
"description": "The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.",
"format": "date-time",
"type": "string"
},
"liveBlogUpdate": {
"description": "An update to the LiveBlog.",
"oneOf": [
{
"$ref": "BlogPosting.schema.json"
},
{
"items": {
"$ref": "BlogPosting.schema.json"
},
"type": "array"
}
]
}
},
"title": "LiveBlogPosting",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Comment.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Comment",
"$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 comment on an item - for example, a comment on a blog post. The comment's content is expressed via the text property, and its topic via about, properties shared with all CreativeWorks.",
"format": "http://schema.org/Comment",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Comment"
},
"downvoteCount": {
"description": "The number of downvotes this question, answer or comment has received from the community.",
"type": "integer"
},
"parentItem": {
"$ref": "Question.schema.json",
"description": "The parent of a question, answer or item in general."
},
"upvoteCount": {
"description": "The number of upvotes this question, answer or comment has received from the community.",
"type": "integer"
}
},
"required": [
"@type"
],
"title": "Comment",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/EventVenue.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/EventVenue",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CivicStructure",
"description": "A public structure, such as a town hall or concert hall."
}
],
"description": "An event venue.",
"format": "http://schema.org/EventVenue",
"title": "EventVenue",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/BookFormatType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BookFormatType",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "The publication format of the book.",
"format": "http://schema.org/BookFormatType",
"oneOf": [
{
"const": "AudiobookFormat",
"description": "Book format: Audiobook. This is an enumerated value for use with the bookFormat property. There is also a type 'Audiobook' in the bib extension which includes Audiobook specific properties."
},
{
"const": "EBook",
"description": "Book format: Ebook."
},
{
"const": "Hardcover",
"description": "Book format: Hardcover."
},
{
"const": "Paperback",
"description": "Book format: Paperback."
}
],
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "BookFormatType"
}
},
"required": [
"@type"
],
"title": "BookFormatType",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/ShoppingCenter.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ShoppingCenter",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/LocalBusiness",
"description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc."
}
],
"description": "A shopping center or mall.",
"title": "ShoppingCenter",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Motel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Motel",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/LodgingBusiness",
"description": "A lodging business, such as a motel, hotel, or inn."
}
],
"description": "A motel.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.",
"format": "http://schema.org/Motel",
"title": "Motel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/ConfirmAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ConfirmAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "InformAction.schema.json",
"description": "The act of notifying someone of information pertinent to them, with no expectation of a response."
}
],
"description": "The act of notifying someone that a future event/action is going to happen as expected.\n\nRelated actions:\n\n\nCancelAction: The antonym of ConfirmAction.\n\n",
"format": "http://schema.org/ConfirmAction",
"title": "ConfirmAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/HinduTemple.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HinduTemple",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PlaceOfWorship.schema.json",
"description": "Place of worship, such as a church, synagogue, or mosque."
}
],
"description": "A Hindu temple.",
"format": "http://schema.org/HinduTemple",
"title": "HinduTemple",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/TheaterGroup.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TheaterGroup",
"$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 theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.",
"format": "http://schema.org/TheaterGroup",
"title": "TheaterGroup",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/AutomatedTeller.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:AutomatedTeller",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:FinancialService",
"description": "Financial services business."
}
],
"description": "ATM/cash machine.",
"title": "AutomatedTeller",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/ItemPage.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ItemPage",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/WebPage",
"description": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page."
}
],
"description": "A page devoted to a single item, such as a particular product or hotel.",
"format": "http://schema.org/ItemPage",
"title": "ItemPage",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/HowToSupply.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HowToSupply",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/HowToItem",
"description": "An item used as either a tool or supply when performing the instructions for how to to achieve a result."
}
],
"description": "A supply consumed when performing the instructions for how to achieve a result.",
"format": "http://schema.org/HowToSupply",
"properties": {
"estimatedCost": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/MonetaryAmount"
}
],
"description": "The estimated cost of the supply or supplies consumed when performing instructions."
}
},
"title": "HowToSupply",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/CourseInstance.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CourseInstance",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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": "An instance of a Course which is distinct from other instances because it is offered at a different time or location or through different media or modes of study or to a specific section of students.",
"format": "http://schema.org/CourseInstance",
"properties": {
"courseMode": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "The medium or means of delivery of the course instance or the mode of study, either as a text label (e.g. \"online\", \"onsite\" or \"blended\"; \"synchronous\" or \"asynchronous\"; \"full-time\" or \"part-time\") or as a URL reference to a term from a controlled vocabulary (e.g. https://ceds.ed.gov/element/001311#Asynchronous )."
},
"instructor": {
"description": "A person assigned to instruct or provide instructional assistance for the CourseInstance.",
"oneOf": [
{
"$ref": "http://schema.org/Person"
},
{
"items": {
"$ref": "http://schema.org/Person"
},
"type": "array"
}
]
}
},
"title": "CourseInstance",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | 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": "ContactPoint.schema.json",
"description": "A contact point\u2014for example, a Customer Complaints department."
}
],
"description": "The mailing address.",
"format": "http://schema.org/PostalAddress",
"properties": {
"addressCountry": {
"anyOf": [
{
"$ref": "Country.schema.json"
},
{
"type": "string"
}
],
"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 | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ReplaceAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ReplaceAction",
"$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 replacing an old object with a new object.",
"format": "http://schema.org/ReplaceAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ReplaceAction"
},
"replacee": {
"description": "A sub property of object. The object that is being replaced.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
},
"replacer": {
"description": "A sub property of object. The object that replaces.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "ReplaceAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/Recipe.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Recipe",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "HowTo.schema.json",
"description": "Instructions that explain how to achieve a result by performing a sequence of steps."
}
],
"description": "A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via suitableForDiet. The keywords property can also be used to add more detail.",
"format": "http://schema.org/Recipe",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Recipe"
},
"cookTime": {
"description": "The time it takes to actually cook the dish, in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"cookingMethod": {
"description": "The method of cooking, such as Frying, Steaming, ...",
"type": "string"
},
"ingredients": {
"description": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"nutrition": {
"$ref": "NutritionInformation.schema.json",
"description": "Nutrition information about the recipe or menu item."
},
"recipeCategory": {
"description": "The category of the recipe\u2014for example, appetizer, entree, etc.",
"type": "string"
},
"recipeCuisine": {
"description": "The cuisine of the recipe (for example, French or Ethiopian).",
"type": "string"
},
"recipeIngredient": {
"description": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"recipeInstructions": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "ItemList.schema.json"
}
],
"description": "A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items."
},
"recipeYield": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The quantity produced by the recipe (for example, number of people served, number of servings, etc)."
},
"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": "Recipe",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/ConfirmAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ConfirmAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "InformAction.schema.json",
"description": "The act of notifying someone of information pertinent to them, with no expectation of a response."
}
],
"description": "The act of notifying someone that a future event/action is going to happen as expected.\n\nRelated actions:\n\n\nCancelAction: The antonym of ConfirmAction.\n\n",
"format": "http://schema.org/ConfirmAction",
"title": "ConfirmAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/FilmAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/FilmAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CreateAction",
"description": "The act of deliberately creating/producing/generating/building a result out of the agent."
}
],
"description": "The act of capturing sound and moving images on film, video, or digitally.",
"format": "http://schema.org/FilmAction",
"title": "FilmAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/CommentAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CommentAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CommunicateAction",
"description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation."
}
],
"description": "The act of generating a comment about a subject.",
"properties": {
"resultComment": {
"description": "A sub property of result. The Comment created or sent as a result of this action.",
"oneOf": [
{
"$ref": "http://schema.org/Comment"
},
{
"items": {
"$ref": "http://schema.org/Comment"
},
"type": "array"
}
]
}
},
"title": "CommentAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/ParentAudience.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ParentAudience",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PeopleAudience.schema.json",
"description": "A set of characteristics belonging to people, e.g. who compose an item's target audience."
}
],
"description": "A set of characteristics describing parents, who can be interested in viewing some content.",
"format": "http://schema.org/ParentAudience",
"properties": {
"childMaxAge": {
"description": "Maximal age of the child.",
"format": "http://schema.org/Number"
},
"childMinAge": {
"description": "Minimal age of the child.",
"format": "http://schema.org/Number"
}
},
"title": "ParentAudience",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c | 2020-05-13T21:31:46 | schemas/Offer.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Offer",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "An offer to transfer some rights to an item or to provide a service \u2014 for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\n\nNote: As the businessFunction property, which identifies the form of offer (e.g. sell, lease, repair, dispose), defaults to http://purl.org/goodrelations/v1#Sell; an Offer without a defined businessFunction value can be assumed to be an offer to sell.\n\nFor GTIN-related fields, see Check Digit calculator and validation guide from GS1.",
"format": "http://schema.org/Offer",
"properties": {
"acceptedPaymentMethod": {
"anyOf": [
{
"$ref": "LoanOrCredit.schema.json"
},
{
"$ref": "PaymentMethod.schema.json"
}
],
"description": "The payment method(s) accepted by seller for this offer."
},
"addOn": {
"description": "An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).",
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
},
"advanceBookingRequirement": {
"$ref": "QuantitativeValue.schema.json",
"description": "The amount of time that is required between accepting the offer and the actual usage of the resource or service."
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"areaServed": {
"anyOf": [
{
"$ref": "AdministrativeArea.schema.json"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "GeoShape.schema.json"
},
{
"type": "string"
}
],
"description": "The geographic area where a service or offered item is provided."
},
"availability": {
"$ref": "ItemAvailability.schema.json",
"description": "The availability of this item\u2014for example In stock, Out of stock, Pre-order, etc."
},
"availabilityEnds": {
"anyOf": [
{
"format": "time",
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The end of the availability of the product or service included in the offer."
},
"availabilityStarts": {
"anyOf": [
{
"format": "time",
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The beginning of the availability of the product or service included in the offer."
},
"availableAtOrFrom": {
"$ref": "Place.schema.json",
"description": "The place(s) from which the offer can be obtained (e.g. store locations)."
},
"availableDeliveryMethod": {
"$ref": "DeliveryMethod.schema.json",
"description": "The delivery method(s) available for this offer."
},
"businessFunction": {
"$ref": "BusinessFunction.schema.json",
"description": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell."
},
"category": {
"description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
},
"deliveryLeadTime": {
"$ref": "QuantitativeValue.schema.json",
"description": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup."
},
"eligibleCustomerType": {
"$ref": "BusinessEntityType.schema.json",
"description": "The type(s) of customers for which the given offer is valid."
},
"eligibleDuration": {
"$ref": "QuantitativeValue.schema.json",
"description": "The duration for which the given offer is valid."
},
"eligibleQuantity": {
"$ref": "QuantitativeValue.schema.json",
"description": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity."
},
"eligibleRegion": {
"anyOf": [
{
"$ref": "Place.schema.json"
},
{
"$ref": "GeoShape.schema.json"
},
{
"type": "string"
}
],
"description": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\n\nSee also ineligibleRegion."
},
"eligibleTransactionVolume": {
"$ref": "PriceSpecification.schema.json",
"description": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount."
},
"gtin12": {
"description": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin13": {
"description": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin14": {
"description": "The GTIN-14 code of the product, or the product to which the offer refers. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin8": {
"description": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.",
"type": "string"
},
"includesObject": {
"description": "This links to a node or nodes indicating the exact quantity of the products included in the offer.",
"items": {
"$ref": "TypeAndQuantityNode.schema.json"
},
"type": "array"
},
"inventoryLevel": {
"$ref": "QuantitativeValue.schema.json",
"description": "The current approximate inventory level for the item or items."
},
"itemCondition": {
"description": "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.",
"items": {
"$ref": "OfferItemCondition.schema.json"
},
"type": "array"
},
"itemOffered": {
"anyOf": [
{
"$ref": "Trip.schema.json"
},
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "AggregateOffer.schema.json"
},
{
"$ref": "Event.schema.json"
},
{
"$ref": "Service.schema.json"
},
{
"$ref": "MenuItem.schema.json"
},
{
"$ref": "Product.schema.json"
}
],
"description": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using businessFunction, e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer."
},
"mpn": {
"description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
"type": "string"
},
"offeredBy": {
"description": "A pointer to the organization or person making the offer.",
"items": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"price": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\n\nUsage guidelines:\n\n\nUse the priceCurrency property (with standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\") instead of including ambiguous symbols such as '$' in the value.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\nNote that both RDFa and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n\n"
},
"priceCurrency": {
"description": "The currency of the price, or a price component when attached to PriceSpecification and its subtypes.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".",
"type": "string"
},
"priceSpecification": {
"description": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.",
"items": {
"$ref": "PriceSpecification.schema.json"
},
"type": "array"
},
"priceValidUntil": {
"description": "The date after which the price is no longer available.",
"format": "date",
"type": "string"
},
"review": {
"description": "A review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"reviews": {
"description": "Review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"seller": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
],
"description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider."
},
"serialNumber": {
"description": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
"type": "string"
},
"sku": {
"description": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
"type": "string"
},
"validFrom": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The date when the item becomes valid."
},
"validThrough": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours."
},
"warranty": {
"$ref": "WarrantyPromise.schema.json",
"description": "The warranty promise(s) included in the offer."
}
},
"title": "Offer",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Action.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Action",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document.",
"format": "http://schema.org/Action",
"properties": {
"actionStatus": {
"description": "Indicates the current disposition of the Action.",
"oneOf": [
{
"$ref": "ActionStatusType.schema.json"
},
{
"items": {
"$ref": "ActionStatusType.schema.json"
},
"type": "array"
}
]
},
"agent": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The direct performer or driver of the action (animate or inanimate). e.g. John wrote a book."
},
"endTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions."
},
"error": {
"description": "For failed actions, more information on the cause of the failure.",
"oneOf": [
{
"$ref": "Thing.schema.json"
},
{
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
}
]
},
"instrument": {
"$ref": "Thing.schema.json",
"description": "The object that helped the agent perform the action. e.g. John wrote a book with a pen."
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
}
],
"description": "The location of for example where the event is happening, an organization is located, or where an action takes place."
},
"object": {
"$ref": "Thing.schema.json",
"description": "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read a book."
},
"participant": {
"description": "Other co-agents that participated in the action indirectly. e.g. John wrote a book with Steve.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"result": {
"$ref": "Thing.schema.json",
"description": "The result produced in the action. e.g. John wrote a book."
},
"startTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions."
},
"target": {
"description": "Indicates a target EntryPoint for an Action.",
"oneOf": [
{
"$ref": "EntryPoint.schema.json"
},
{
"items": {
"$ref": "EntryPoint.schema.json"
},
"type": "array"
}
]
}
},
"title": "Action",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/Demand.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Demand",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.",
"format": "http://schema.org/Demand",
"properties": {
"acceptedPaymentMethod": {
"anyOf": [
{
"$ref": "LoanOrCredit.schema.json"
},
{
"$ref": "PaymentMethod.schema.json"
}
],
"description": "The payment method(s) accepted by seller for this offer."
},
"advanceBookingRequirement": {
"$ref": "QuantitativeValue.schema.json",
"description": "The amount of time that is required between accepting the offer and the actual usage of the resource or service."
},
"areaServed": {
"anyOf": [
{
"$ref": "AdministrativeArea.schema.json"
},
{
"$ref": "GeoShape.schema.json"
},
{
"$ref": "Place.schema.json"
},
{
"type": "string"
}
],
"description": "The geographic area where a service or offered item is provided."
},
"availability": {
"$ref": "ItemAvailability.schema.json",
"description": "The availability of this item\u2014for example In stock, Out of stock, Pre-order, etc."
},
"availabilityEnds": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The end of the availability of the product or service included in the offer."
},
"availabilityStarts": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The beginning of the availability of the product or service included in the offer."
},
"availableAtOrFrom": {
"$ref": "Place.schema.json",
"description": "The place(s) from which the offer can be obtained (e.g. store locations)."
},
"availableDeliveryMethod": {
"$ref": "DeliveryMethod.schema.json",
"description": "The delivery method(s) available for this offer."
},
"businessFunction": {
"$ref": "BusinessFunction.schema.json",
"description": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell."
},
"deliveryLeadTime": {
"$ref": "QuantitativeValue.schema.json",
"description": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup."
},
"eligibleCustomerType": {
"$ref": "BusinessEntityType.schema.json",
"description": "The type(s) of customers for which the given offer is valid."
},
"eligibleDuration": {
"$ref": "QuantitativeValue.schema.json",
"description": "The duration for which the given offer is valid."
},
"eligibleQuantity": {
"$ref": "QuantitativeValue.schema.json",
"description": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity."
},
"eligibleRegion": {
"anyOf": [
{
"$ref": "GeoShape.schema.json"
},
{
"$ref": "Place.schema.json"
},
{
"type": "string"
}
],
"description": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\n\nSee also ineligibleRegion."
},
"eligibleTransactionVolume": {
"$ref": "PriceSpecification.schema.json",
"description": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount."
},
"gtin12": {
"description": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin13": {
"description": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin14": {
"description": "The GTIN-14 code of the product, or the product to which the offer refers. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin8": {
"description": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.",
"type": "string"
},
"includesObject": {
"description": "This links to a node or nodes indicating the exact quantity of the products included in the offer.",
"items": {
"$ref": "TypeAndQuantityNode.schema.json"
},
"type": "array"
},
"inventoryLevel": {
"$ref": "QuantitativeValue.schema.json",
"description": "The current approximate inventory level for the item or items."
},
"itemCondition": {
"description": "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.",
"items": {
"$ref": "OfferItemCondition.schema.json"
},
"type": "array"
},
"itemOffered": {
"anyOf": [
{
"$ref": "AggregateOffer.schema.json"
},
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "Event.schema.json"
},
{
"$ref": "MenuItem.schema.json"
},
{
"$ref": "Product.schema.json"
},
{
"$ref": "Service.schema.json"
},
{
"$ref": "Trip.schema.json"
}
],
"description": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using businessFunction, e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer."
},
"mpn": {
"description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
"type": "string"
},
"priceSpecification": {
"description": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.",
"items": {
"$ref": "PriceSpecification.schema.json"
},
"type": "array"
},
"seller": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider."
},
"serialNumber": {
"description": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
"type": "string"
},
"sku": {
"description": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
"type": "string"
},
"validFrom": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date when the item becomes valid."
},
"validThrough": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours."
},
"warranty": {
"$ref": "WarrantyPromise.schema.json",
"description": "The warranty promise(s) included in the offer."
}
},
"title": "Demand",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/HowToDirection.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HowToDirection",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
},
{
"$ref": "ListItem.schema.json",
"description": "An list item, e.g. a step in a checklist or how-to description."
}
],
"description": "A direction indicating a single action to do in the instructions for how to achieve a result.",
"format": "http://schema.org/HowToDirection",
"properties": {
"afterMedia": {
"description": "A media object representing the circumstances after performing this direction.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "MediaObject.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "MediaObject.schema.json"
}
]
},
"type": "array"
}
]
},
"beforeMedia": {
"description": "A media object representing the circumstances before performing this direction.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "MediaObject.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "MediaObject.schema.json"
}
]
},
"type": "array"
}
]
},
"duringMedia": {
"description": "A media object representing the circumstances while performing this direction.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "MediaObject.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "MediaObject.schema.json"
}
]
},
"type": "array"
}
]
},
"performTime": {
"description": "The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"prepTime": {
"description": "The length of time it takes to prepare the items to be used in instructions or a direction, in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"supply": {
"description": "A sub-property of instrument. A supply consumed when performing instructions or a direction.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "HowToSupply.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "HowToSupply.schema.json"
}
]
},
"type": "array"
}
]
},
"tool": {
"description": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "HowToTool.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "HowToTool.schema.json"
}
]
},
"type": "array"
}
]
},
"totalTime": {
"description": "The total time required to perform instructions or a direction (including time to prepare the supplies), in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
}
},
"title": "HowToDirection",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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": "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 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.",
"properties": {
"itemListElement": {
"description": "For itemListElement values, you can use simple strings (e.g. \"Peter\", \"Paul\", \"Mary\"), existing entities, or use ListItem.\n\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\n\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/ListItem"
},
{
"$ref": "http://schema.org/Thing"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/ListItem"
},
{
"$ref": "http://schema.org/Thing"
}
]
},
"type": "array"
}
]
},
"itemListOrder": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/ItemListOrderType"
}
],
"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 | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/BookStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BookStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A bookstore.",
"format": "http://schema.org/BookStore",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "BookStore"
}
},
"required": [
"@type"
],
"title": "BookStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/LikeAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LikeAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "ReactAction.schema.json",
"description": "The act of responding instinctively and emotionally to an object, expressing a sentiment."
}
],
"description": "The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.",
"format": "http://schema.org/LikeAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "LikeAction"
}
},
"required": [
"@type"
],
"title": "LikeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/TelevisionChannel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TelevisionChannel",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/BroadcastChannel",
"description": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup."
}
],
"description": "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.",
"title": "TelevisionChannel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/UserComments.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/UserComments",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "UserInteraction.schema.json",
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment."
}
],
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment.",
"format": "http://schema.org/UserComments",
"properties": {
"commentText": {
"description": "The text of the UserComment.",
"type": "string"
},
"commentTime": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The time at which the UserComment was made."
},
"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."
},
"discusses": {
"$ref": "CreativeWork.schema.json",
"description": "Specifies the CreativeWork associated with the UserComment."
},
"replyToUrl": {
"description": "The URL at which a reply may be posted to the specified UserComment.",
"format": "uri",
"type": "string"
}
},
"title": "UserComments",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/BroadcastEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BroadcastEvent",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/PublicationEvent",
"description": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media."
}
],
"description": "An over the air or online broadcast event.",
"format": "http://schema.org/BroadcastEvent",
"properties": {
"broadcastOfEvent": {
"$ref": "http://schema.org/Event",
"description": "The event being broadcast such as a sporting event or awards ceremony."
},
"isLiveBroadcast": {
"description": "True is the broadcast is of a live event.",
"type": "boolean"
},
"videoFormat": {
"description": "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).",
"type": "string"
}
},
"title": "BroadcastEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/LocalBusiness.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LocalBusiness",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Organization.schema.json",
"description": "An organization such as a school, NGO, corporation, club, etc."
},
{
"$ref": "Place.schema.json",
"description": "Entities that have a somewhat fixed, physical extension."
}
],
"description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.",
"format": "http://schema.org/LocalBusiness",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "LocalBusiness"
},
"branchOf": {
"$ref": "Organization.schema.json",
"description": "The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)branch."
},
"currenciesAccepted": {
"description": "The currency accepted.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".",
"type": "string"
},
"openingHours": {
"description": "The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.\n\n\nDays are specified using the following two-letter combinations: Mo, Tu, We, Th, Fr, Sa, Su.\nTimes are specified using 24:00 time. For example, 3pm is specified as 15:00. \nHere is an example: <time itemprop=\"openingHours\" datetime=\"Tu,Th 16:00-20:00\">Tuesdays and Thursdays 4-8pm</time>.\nIf a business is open 7 days a week, then it can be specified as <time itemprop=\"openingHours\" datetime=\"Mo-Su\">Monday through Sunday, all day</time>.\n\n",
"type": "string"
},
"paymentAccepted": {
"description": "Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.",
"items": {
"type": "string"
},
"type": "array"
},
"priceRange": {
"description": "The price range of the business, for example $$$.",
"type": "string"
}
},
"required": [
"@type"
],
"title": "LocalBusiness",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/DepartmentStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DepartmentStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Store",
"description": "A retail good store."
}
],
"description": "A department store.",
"title": "DepartmentStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/WorkBasedProgram.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:WorkBasedProgram",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:EducationalOccupationalProgram",
"description": "A program offered by an institution which determines the learning progress to achieve an outcome, usually a credential like a degree or certificate. This would define a discrete set of opportunities (e.g., job, courses) that together constitute a program with a clear start, end, set of requirements, and transition to a new occupational opportunity (e.g., a job), or sometimes a higher educational opportunity (e.g., an advanced degree)."
}
],
"description": "A program with both an educational and employment component. Typically based at a workplace and structured around work-based learning, with the aim of instilling competencies related to an occupation. WorkBasedProgram is used to distinguish programs such as apprenticeships from school, college or other classroom based educational programs.",
"properties": {
"occupationalCategory": {
"description": "A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided.\\n\nNote: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:CategoryCode"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:CategoryCode"
}
]
},
"type": "array"
}
]
},
"trainingSalary": {
"$ref": "schema:MonetaryAmountDistribution",
"description": "The estimated salary earned while in the program."
}
},
"title": "WorkBasedProgram",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/TelevisionChannel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:TelevisionChannel",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:BroadcastChannel",
"description": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup."
}
],
"description": "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.",
"title": "TelevisionChannel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/MediaObject.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:MediaObject",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:CreativeWork",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A media 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).",
"properties": {
"associatedArticle": {
"description": "A NewsArticle associated with the Media Object.",
"oneOf": [
{
"$ref": "schema:NewsArticle"
},
{
"items": {
"$ref": "schema:NewsArticle"
},
"type": "array"
}
]
},
"bitrate": {
"description": "The bitrate of the media object.",
"type": "string"
},
"contentSize": {
"description": "File size in (mega/kilo) bytes.",
"type": "string"
},
"contentUrl": {
"description": "Actual bytes of the media object, for example the image file or video file.",
"format": "uri",
"type": "string"
},
"duration": {
"$comment": "https://schema.org/Duration",
"description": "The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).",
"type": "string"
},
"embedUrl": {
"description": "A URL pointing to a player for a specific video. In general, this is the information in the ```src``` element of an ```embed``` tag and should not be the same as the content of the ```loc``` tag.",
"format": "uri",
"type": "string"
},
"encodesCreativeWork": {
"$ref": "schema:CreativeWork",
"description": "The CreativeWork encoded by this media object."
},
"encodingFormat": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "Media type typically expressed using a MIME format (see [IANA site](http://www.iana.org/assignments/media-types/media-types.xhtml) and [MDN reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)) 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."
},
"endTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions."
},
"height": {
"anyOf": [
{
"$comment": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "schema:QuantitativeValue"
}
],
"description": "The height of the item."
},
"ineligibleRegion": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:GeoShape"
},
{
"$ref": "schema:Place"
}
],
"description": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is not valid, e.g. a region where the transaction is not allowed.\\n\\nSee also [[eligibleRegion]].\n "
},
"interpretedAsClaim": {
"description": "Used to indicate a specific claim contained, implied, translated or refined from the content of a [[MediaObject]] or other [[CreativeWork]]. The interpreting party can be indicated using [[claimInterpreter]].",
"oneOf": [
{
"$ref": "schema:Claim"
},
{
"items": {
"$ref": "schema:Claim"
},
"type": "array"
}
]
},
"playerType": {
"description": "Player type required\u2014for example, Flash or Silverlight.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"productionCompany": {
"$ref": "schema:Organization",
"description": "The production company or studio responsible for the item e.g. series, video game, episode etc."
},
"regionsAllowed": {
"$ref": "schema:Place",
"description": "The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in [ISO 3166 format](http://en.wikipedia.org/wiki/ISO_3166)."
},
"requiresSubscription": {
"anyOf": [
{
"type": "boolean"
},
{
"$ref": "schema:MediaSubscription"
}
],
"description": "Indicates if use of the media require a subscription (either paid or free). Allowed values are ```true``` or ```false``` (note that an earlier version had 'yes', 'no')."
},
"sha256": {
"description": "The [SHA-2](https://en.wikipedia.org/wiki/SHA-2) SHA256 hash of the content of the item. For example, a zero-length input has value 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'",
"type": "string"
},
"startTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions."
},
"uploadDate": {
"description": "Date when this media object was uploaded to this site.",
"format": "date",
"type": "string"
},
"width": {
"anyOf": [
{
"$comment": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "schema:QuantitativeValue"
}
],
"description": "The width of the item."
}
},
"title": "MediaObject",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/ToyStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ToyStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Store",
"description": "A retail good store."
}
],
"description": "A toy store.",
"format": "http://schema.org/ToyStore",
"title": "ToyStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/LegalService.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LegalService",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/LocalBusiness",
"description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc."
}
],
"description": "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s).",
"format": "http://schema.org/LegalService",
"title": "LegalService",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/RentAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/RentAction",
"$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 in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment.",
"format": "http://schema.org/RentAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "RentAction"
},
"landlord": {
"description": "A sub property of participant. The owner of the real estate property.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"realEstateAgent": {
"description": "A sub property of participant. The real estate agent involved in the action.",
"items": {
"$ref": "RealEstateAgent.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "RentAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/TravelAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TravelAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MoveAction.schema.json",
"description": "The act of an agent relocating to a place.\n\nRelated actions:\n\n\nTransferAction: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.\n\n"
}
],
"description": "The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants.",
"format": "http://schema.org/TravelAction",
"properties": {
"distance": {
"description": "The distance travelled, e.g. exercising or travelling.",
"items": {
"$ref": "Distance.schema.json"
},
"type": "array"
}
},
"title": "TravelAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/NGO.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/NGO",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Organization.schema.json",
"description": "An organization such as a school, NGO, corporation, club, etc."
}
],
"description": "Organization: Non-governmental Organization.",
"format": "http://schema.org/NGO",
"title": "NGO",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/AmusementPark.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AmusementPark",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "EntertainmentBusiness.schema.json",
"description": "A business providing entertainment."
}
],
"description": "An amusement park.",
"format": "http://schema.org/AmusementPark",
"title": "AmusementPark",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/ClothingStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ClothingStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A clothing store.",
"format": "http://schema.org/ClothingStore",
"title": "ClothingStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/HowToStep.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:HowToStep",
"$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."
},
{
"$ref": "schema: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": "schema: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.",
"title": "HowToStep",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | 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": "ContactPoint.schema.json",
"description": "A contact point\u2014for example, a Customer Complaints department."
}
],
"description": "The mailing address.",
"format": "http://schema.org/PostalAddress",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "PostalAddress"
},
"addressCountry": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Country.schema.json"
}
],
"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"
}
},
"required": [
"@type"
],
"title": "PostalAddress",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/CreateAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:CreateAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Action",
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html)."
}
],
"description": "The act of deliberately creating/producing/generating/building a result out of the agent.",
"title": "CreateAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/SportsEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SportsEvent",
"$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: Sports event.",
"format": "http://schema.org/SportsEvent",
"properties": {
"awayTeam": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "SportsTeam.schema.json"
}
],
"description": "The away team in a sports event."
},
"competitor": {
"description": "A competitor in a sports event.",
"items": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "SportsTeam.schema.json"
}
]
},
"type": "array"
},
"homeTeam": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "SportsTeam.schema.json"
}
],
"description": "The home team in a sports event."
}
},
"title": "SportsEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/MusicRelease.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MusicRelease",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MusicPlaylist.schema.json",
"description": "A collection of music tracks in playlist form."
}
],
"description": "A MusicRelease is a specific release of a music album.",
"format": "http://schema.org/MusicRelease",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "MusicRelease"
},
"catalogNumber": {
"description": "The catalog number for the release.",
"type": "string"
},
"creditedTo": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to \"Stefani Germanotta Band\", but by Lady Gaga."
},
"duration": {
"description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"musicReleaseFormat": {
"description": "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).",
"items": {
"$ref": "MusicReleaseFormatType.schema.json"
},
"type": "array"
},
"recordLabel": {
"$ref": "Organization.schema.json",
"description": "The label that issued the release."
},
"releaseOf": {
"$ref": "MusicAlbum.schema.json",
"description": "The album this is a release of."
}
},
"required": [
"@type"
],
"title": "MusicRelease",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Casino.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Casino",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:EntertainmentBusiness",
"description": "A business providing entertainment."
}
],
"description": "A casino.",
"title": "Casino",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/MobileApplication.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MobileApplication",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "SoftwareApplication.schema.json",
"description": "A software application."
}
],
"description": "A software application designed specifically to work well on a mobile device such as a telephone.",
"format": "http://schema.org/MobileApplication",
"properties": {
"carrierRequirements": {
"description": "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).",
"format": "http://schema.org/Text"
}
},
"title": "MobileApplication",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/WPFooter.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:WPFooter",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:WebPageElement",
"description": "A web page element, like a table or an image."
}
],
"description": "The footer section of the page.",
"title": "WPFooter",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/ApprovedIndication.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:ApprovedIndication",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:MedicalIndication",
"description": "A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc."
}
],
"description": "An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.",
"title": "ApprovedIndication",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Beach.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Beach",
"$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": "Beach.",
"title": "Beach",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/RsvpAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:RsvpAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:InformAction",
"description": "The act of notifying someone of information pertinent to them, with no expectation of a response."
}
],
"description": "The act of notifying an event organizer as to whether you expect to attend the event.",
"properties": {
"additionalNumberOfGuests": {
"description": "If responding yes, the number of guests who will attend in addition to the invitee.",
"oneOf": [
{
"type": "number"
},
{
"items": {
"type": "number"
},
"type": "array"
}
]
},
"comment": {
"description": "Comments, typically from users.",
"oneOf": [
{
"$ref": "schema:Comment"
},
{
"items": {
"$ref": "schema:Comment"
},
"type": "array"
}
]
},
"rsvpResponse": {
"$ref": "schema:RsvpResponseType",
"description": "The response (yes, no, maybe) to the RSVP."
}
},
"title": "RsvpAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/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.",
"title": "HowToStep",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/CheckoutPage.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CheckoutPage",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "WebPage.schema.json",
"description": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page."
}
],
"description": "Web page type: Checkout page.",
"format": "http://schema.org/CheckoutPage",
"title": "CheckoutPage",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | 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": {
"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 | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ElementarySchool.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ElementarySchool",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "EducationalOrganization.schema.json",
"description": "An educational organization."
}
],
"description": "An elementary school.",
"format": "http://schema.org/ElementarySchool",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ElementarySchool"
}
},
"required": [
"@type"
],
"title": "ElementarySchool",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/DanceEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DanceEvent",
"$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: A social dance.",
"format": "http://schema.org/DanceEvent",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "DanceEvent"
}
},
"required": [
"@type"
],
"title": "DanceEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/InstallAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/InstallAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/ConsumeAction",
"description": "The act of ingesting information/resources/food."
}
],
"description": "The act of installing an application.",
"title": "InstallAction",
"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.