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
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/BusStation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BusStation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CivicStructure", "description": "A public structure, such as a town hall or concert hall." } ], "description": "A bus station.", "format": "http://schema.org/BusStation", "title": "BusStation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/PoliceStation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PoliceStation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CivicStructure.schema.json", "description": "A public structure, such as a town hall or concert hall." }, { "$ref": "EmergencyService.schema.json", "description": "An emergency service, such as a fire station or ER." } ], "description": "A police station.", "format": "http://schema.org/PoliceStation", "title": "PoliceStation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
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": { "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" } }, "title": "Comment", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/Permit.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Permit", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "A permit issued by an organization, e.g. a parking pass.", "format": "http://schema.org/Permit", "properties": { "issuedBy": { "$ref": "Organization.schema.json", "description": "The organization issuing the ticket or permit." }, "issuedThrough": { "$ref": "Service.schema.json", "description": "The service through with the permit was granted." }, "permitAudience": { "$ref": "Audience.schema.json", "description": "The target audience for this permit." }, "validFor": { "description": "The duration of validity of a permit or similar thing.", "format": "https://schema.org/Duration", "type": "string" }, "validFrom": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date when the item becomes valid." }, "validIn": { "$ref": "AdministrativeArea.schema.json", "description": "The geographic area where a permit or similar thing is valid." }, "validUntil": { "description": "The date when the item is no longer valid.", "format": "date", "type": "string" } }, "title": "Permit", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
dcbb428317ce07ab8dcff50247c907f15443fb2f
2020-05-22T20:27:54
schemas/DigitalDocument.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DigitalDocument", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "An electronic file or document.", "format": "http://schema.org/DigitalDocument", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "DigitalDocument" }, "hasDigitalDocumentPermission": { "description": "A permission related to the access to this document (e.g. permission to read or write an electronic document). For a public document, specify a grantee with an Audience with audienceType equal to \"public\".", "oneOf": [ { "$ref": "DigitalDocumentPermission.schema.json" }, { "items": { "$ref": "DigitalDocumentPermission.schema.json" }, "type": "array" } ] } }, "required": [ "@type" ], "title": "DigitalDocument", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/ControlAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ControlAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Action.schema.json", "description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document." } ], "description": "An agent controls a device or application.", "format": "http://schema.org/ControlAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ControlAction" } }, "required": [ "@type" ], "title": "ControlAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/TaxiReservation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TaxiReservation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Reservation.schema.json", "description": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use Offer." } ], "description": "A reservation for a taxi.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use Offer.", "format": "http://schema.org/TaxiReservation", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "TaxiReservation" }, "partySize": { "description": "Number of people the reservation should accommodate.", "items": { "anyOf": [ { "type": "integer" }, { "$ref": "QuantitativeValue.schema.json" } ] }, "type": "array" }, "pickupLocation": { "description": "Where a taxi will pick up a passenger or a rental car can be picked up.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "pickupTime": { "description": "When a taxi will pickup a passenger or a rental car can be picked up.", "items": { "format": "date-time", "type": "string" }, "type": "array" } }, "required": [ "@type" ], "title": "TaxiReservation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/PaymentStatusType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PaymentStatusType", "$schema": "http://json-schema.org/draft-07/schema#", "description": "A specific payment status. For example, PaymentDue, PaymentComplete, etc.", "format": "http://schema.org/PaymentStatusType", "oneOf": [ { "const": "PaymentComplete", "description": "The payment has been received and processed." }, { "const": "PaymentPastDue", "description": "The payment is due and considered late." }, { "const": "PaymentAutomaticallyApplied", "description": "An automatic payment system is in place and will be used." }, { "const": "PaymentDue", "description": "The payment is due, but still within an acceptable time to be received." }, { "const": "PaymentDeclined", "description": "The payee received the payment, but it was declined for some reason." } ], "title": "PaymentStatusType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/Invoice.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Invoice", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "A statement of the money due for goods or services; a bill.", "format": "http://schema.org/Invoice", "properties": { "accountId": { "description": "The identifier for the account the payment will be applied to.", "type": "string" }, "billingPeriod": { "description": "The time interval used to compute the invoice.", "format": "https://schema.org/Duration", "type": "string" }, "broker": { "description": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.", "items": { "oneOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "category": { "description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.", "items": { "oneOf": [ { "type": "string" }, { "format": "uri", "type": "string" }, { "$ref": "Thing.schema.json" } ] }, "type": "array" }, "confirmationNumber": { "description": "A number that confirms the given order or payment has been received.", "type": "string" }, "customer": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "Party placing the order or paying the invoice." }, "minimumPaymentDue": { "anyOf": [ { "$ref": "PriceSpecification.schema.json" }, { "$ref": "MonetaryAmount.schema.json" } ], "description": "The minimum payment required at this time." }, "paymentDue": { "description": "The date that payment is due.", "format": "date-time", "type": "string" }, "paymentDueDate": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "date", "type": "string" } ], "description": "The date that payment is due." }, "paymentMethod": { "$ref": "PaymentMethod.schema.json", "description": "The name of the credit card or other method of payment for the order." }, "paymentMethodId": { "description": "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).", "items": { "type": "string" }, "type": "array" }, "paymentStatus": { "anyOf": [ { "$ref": "PaymentStatusType.schema.json" }, { "type": "string" } ], "description": "The status of payment; whether the invoice has been paid or not." }, "provider": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller." }, "referencesOrder": { "$ref": "Order.schema.json", "description": "The Order(s) related to this Invoice. One or more Orders may be combined into a single Invoice." }, "scheduledPaymentDate": { "description": "The date the invoice is scheduled to be paid.", "format": "date", "type": "string" }, "totalPaymentDue": { "anyOf": [ { "$ref": "PriceSpecification.schema.json" }, { "$ref": "MonetaryAmount.schema.json" } ], "description": "The total amount due." } }, "title": "Invoice", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/WebApplication.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:WebApplication", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:SoftwareApplication", "description": "A software application." } ], "description": "Web applications.", "properties": { "browserRequirements": { "description": "Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.", "type": "string" } }, "title": "WebApplication", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Hospital.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Hospital", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:CivicStructure", "description": "A public structure, such as a town hall or concert hall." }, { "$ref": "schema:EmergencyService", "description": "An emergency service, such as a fire station or ER." }, { "$ref": "schema:MedicalOrganization", "description": "A medical organization (physical or not), such as hospital, institution or clinic." } ], "description": "A hospital.", "properties": { "availableService": { "description": "A medical service available from this provider.", "oneOf": [ { "anyOf": [ { "$ref": "schema:MedicalProcedure" }, { "$ref": "schema:MedicalTest" }, { "$ref": "schema:MedicalTherapy" } ] }, { "items": { "anyOf": [ { "$ref": "schema:MedicalProcedure" }, { "$ref": "schema:MedicalTest" }, { "$ref": "schema:MedicalTherapy" } ] }, "type": "array" } ] }, "healthcareReportingData": { "description": "Indicates data describing a hospital, e.g. a CDC [[CDCPMDRecord]] or as some kind of [[Dataset]].", "oneOf": [ { "anyOf": [ { "$ref": "schema:CDCPMDRecord" }, { "$ref": "schema:Dataset" } ] }, { "items": { "anyOf": [ { "$ref": "schema:CDCPMDRecord" }, { "$ref": "schema:Dataset" } ] }, "type": "array" } ] }, "medicalSpecialty": { "description": "A medical specialty of the provider.", "oneOf": [ { "$ref": "schema:MedicalSpecialty" }, { "items": { "$ref": "schema:MedicalSpecialty" }, "type": "array" } ] } }, "title": "Hospital", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/SearchResultsPage.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SearchResultsPage", "$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: Search results page.", "format": "http://schema.org/SearchResultsPage", "title": "SearchResultsPage", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
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", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Enumeration" } }, "required": [ "@type" ], "title": "Enumeration", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
schemas/Trip.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Trip", "$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 trip or journey. An itinerary of visits to one or more places.", "format": "http://schema.org/Trip", "properties": { "arrivalTime": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "time", "type": "string" } ], "description": "The expected arrival time." }, "departureTime": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "time", "type": "string" } ], "description": "The expected departure time." }, "offers": { "description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.", "items": { "anyOf": [ { "$ref": "Demand.schema.json" }, { "$ref": "Offer.schema.json" } ] }, "type": "array" }, "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." } }, "title": "Trip", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ProfilePage.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ProfilePage", "$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": "Web page type: Profile page.", "title": "ProfilePage", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/NightClub.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/NightClub", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "EntertainmentBusiness.schema.json", "description": "A business providing entertainment." } ], "description": "A nightclub or discotheque.", "format": "http://schema.org/NightClub", "title": "NightClub", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/AutoPartsStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:AutoPartsStore", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:AutomotiveBusiness", "description": "Car repair, sales, or parts." }, { "$ref": "schema:Store", "description": "A retail good store." } ], "description": "An auto parts store.", "title": "AutoPartsStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/WebPageElement.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:WebPageElement", "$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 web page element, like a table or an image.", "properties": { "cssSelector": { "description": "A CSS selector, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".", "type": "string" }, "xpath": { "description": "An XPath, e.g. of a [[SpeakableSpecification]] or [[WebPageElement]]. In the latter case, multiple matches within a page can constitute a single conceptual \"Web page element\".", "type": "string" } }, "title": "WebPageElement", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/OrganizationRole.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/OrganizationRole", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Role.schema.json", "description": "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n\nSee also blog post." } ], "description": "A subclass of Role used to describe roles within organizations.", "format": "http://schema.org/OrganizationRole", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "OrganizationRole" }, "numberedPosition": { "description": "A number associated with a role in an organization, for example, the number on an athlete's jersey.", "items": { "type": "number" }, "type": "array" } }, "required": [ "@type" ], "title": "OrganizationRole", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/OrganizationRole.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/OrganizationRole", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Role", "description": "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n\nSee also blog post." } ], "description": "A subclass of Role used to describe roles within organizations.", "properties": { "numberedPosition": { "description": "A number associated with a role in an organization, for example, the number on an athlete's jersey.", "oneOf": [ { "type": "number" }, { "items": { "type": "number" }, "type": "array" } ] } }, "title": "OrganizationRole", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Substance.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Substance", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:MedicalEntity", "description": "The most generic type of entity related to health and the practice of medicine." } ], "description": "Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical.", "properties": { "activeIngredient": { "description": "An active ingredient, typically chemical compounds and/or biologic substances.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "maximumIntake": { "$ref": "schema:MaximumDoseSchedule", "description": "Recommended intake of this supplement for a given population as defined by a specific recommending authority." } }, "title": "Substance", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/QuantitativeValue.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/QuantitativeValue", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/StructuredValue", "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing." } ], "description": "A point value or interval for product characteristics and other purposes.", "properties": { "additionalProperty": { "description": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.", "oneOf": [ { "$ref": "http://schema.org/PropertyValue" }, { "items": { "$ref": "http://schema.org/PropertyValue" }, "type": "array" } ] }, "maxValue": { "description": "The upper value of some characteristic or property.", "type": "number" }, "minValue": { "description": "The lower value of some characteristic or property.", "type": "number" }, "unitCode": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon." }, "unitText": { "description": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "value": { "anyOf": [ { "type": "boolean" }, { "type": "number" }, { "type": "string" }, { "$ref": "http://schema.org/StructuredValue" } ], "description": "The value of the quantitative value or property value node.\n\n\nFor QuantitativeValue and MonetaryAmount, the recommended type for values is 'Number'.\nFor PropertyValue, it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n" }, "valueReference": { "description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Enumeration" }, { "$ref": "http://schema.org/PropertyValue" }, { "$ref": "http://schema.org/QualitativeValue" }, { "$ref": "http://schema.org/QuantitativeValue" }, { "$ref": "http://schema.org/StructuredValue" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Enumeration" }, { "$ref": "http://schema.org/PropertyValue" }, { "$ref": "http://schema.org/QualitativeValue" }, { "$ref": "http://schema.org/QuantitativeValue" }, { "$ref": "http://schema.org/StructuredValue" } ] }, "type": "array" } ] } }, "title": "QuantitativeValue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
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": "CreateAction.schema.json", "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
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/SportsTeam.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SportsTeam", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "SportsOrganization.schema.json", "description": "Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations." } ], "description": "Organization: Sports team.", "format": "http://schema.org/SportsTeam", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "SportsTeam" }, "athlete": { "description": "A person that acts as performing member of a sports team; a player as opposed to a coach.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "coach": { "description": "A person that acts in a coaching role for a sports team.", "items": { "$ref": "Person.schema.json" }, "type": "array" } }, "required": [ "@type" ], "title": "SportsTeam", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/Photograph.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Photograph", "$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 photograph.", "format": "http://schema.org/Photograph", "title": "Photograph", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/ExerciseGym.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:ExerciseGym", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:SportsActivityLocation", "description": "A sports location, such as a playing field." } ], "description": "A gym.", "title": "ExerciseGym", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/ServiceChannel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:ServiceChannel", "$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 means for accessing a service, e.g. a government office location, web site, or phone number.", "properties": { "availableLanguage": { "description": "A language someone may use with or at the item, service or place. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[inLanguage]]", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "schema:Language" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "schema:Language" } ] }, "type": "array" } ] }, "processingTime": { "$comment": "https://schema.org/Duration", "description": "Estimated processing time for the service using this channel.", "type": "string" }, "providesService": { "$ref": "schema:Service", "description": "The service provided by this channel." }, "serviceLocation": { "$ref": "schema:Place", "description": "The location (e.g. civic structure, local business, etc.) where a person can go to access the service." }, "servicePhone": { "$ref": "schema:ContactPoint", "description": "The phone number to use to access the service." }, "servicePostalAddress": { "$ref": "schema:PostalAddress", "description": "The address for accessing the service by mail." }, "serviceSmsNumber": { "$ref": "schema:ContactPoint", "description": "The number to access the service by text message." }, "serviceUrl": { "description": "The website to access the service.", "format": "uri", "type": "string" } }, "title": "ServiceChannel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/TireShop.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TireShop", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Store.schema.json", "description": "A retail good store." } ], "description": "A tire shop.", "format": "http://schema.org/TireShop", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "TireShop" } }, "required": [ "@type" ], "title": "TireShop", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Event.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Event", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Thing", "description": "The most generic type of item." } ], "description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects.", "format": "http://schema.org/Event", "properties": { "about": { "$ref": "http://schema.org/Thing", "description": "The subject matter of the content." }, "actor": { "description": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "aggregateRating": { "$ref": "http://schema.org/AggregateRating", "description": "The overall rating, based on a collection of reviews or ratings, of the item." }, "attendee": { "description": "A person or organization attending the event.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "attendees": { "description": "A person attending the event.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "audience": { "$ref": "http://schema.org/Audience", "description": "An intended audience, i.e. a group for whom something was created." }, "composer": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "The person or organization who wrote a composition, or who is the composer of a work performed at some event." }, "contributor": { "description": "A secondary contributor to the CreativeWork or Event.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "director": { "$ref": "http://schema.org/Person", "description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip." }, "doorTime": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "time", "type": "string" } ], "description": "The time admission will commence." }, "duration": { "description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.", "format": "https://schema.org/Duration", "type": "string" }, "endDate": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The end date and time of the item (in ISO 8601 date format)." }, "eventStatus": { "description": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.", "oneOf": [ { "$ref": "http://schema.org/EventStatusType" }, { "items": { "$ref": "http://schema.org/EventStatusType" }, "type": "array" } ] }, "funder": { "description": "A person or organization that supports (sponsors) something through some kind of financial contribution.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "inLanguage": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Language" } ], "description": "The language of the content or performance or used in an action. Please use one of the language codes from the IETF BCP 47 standard. See also availableLanguage." }, "isAccessibleForFree": { "description": "A flag to signal that the item, event, or place is accessible for free.", "type": "boolean" }, "location": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Place" }, { "$ref": "http://schema.org/PostalAddress" } ], "description": "The location of for example where the event is happening, an organization is located, or where an action takes place." }, "maximumAttendeeCapacity": { "description": "The total number of individuals that may attend an event or venue.", "type": "integer" }, "offers": { "description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Demand" }, { "$ref": "http://schema.org/Offer" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Demand" }, { "$ref": "http://schema.org/Offer" } ] }, "type": "array" } ] }, "organizer": { "description": "An organizer of an Event.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "performer": { "description": "A performer at the event\u2014for example, a presenter, musician, musical group or actor.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "performers": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "The main performer or performers of the event\u2014for example, a presenter, musician, or actor." }, "previousStartDate": { "description": "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.", "oneOf": [ { "format": "date", "type": "string" }, { "items": { "format": "date", "type": "string" }, "type": "array" } ] }, "recordedIn": { "$ref": "http://schema.org/CreativeWork", "description": "The CreativeWork that captured all or part of this Event." }, "remainingAttendeeCapacity": { "description": "The number of attendee places for an event that remain unallocated.", "type": "integer" }, "review": { "description": "A review of the item.", "oneOf": [ { "$ref": "http://schema.org/Review" }, { "items": { "$ref": "http://schema.org/Review" }, "type": "array" } ] }, "sponsor": { "description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "startDate": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The start date and time of the item (in ISO 8601 date format)." }, "subEvent": { "description": "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.", "oneOf": [ { "$ref": "http://schema.org/Event" }, { "items": { "$ref": "http://schema.org/Event" }, "type": "array" } ] }, "subEvents": { "description": "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.", "oneOf": [ { "$ref": "http://schema.org/Event" }, { "items": { "$ref": "http://schema.org/Event" }, "type": "array" } ] }, "superEvent": { "description": "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.", "oneOf": [ { "$ref": "http://schema.org/Event" }, { "items": { "$ref": "http://schema.org/Event" }, "type": "array" } ] }, "translator": { "description": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "typicalAgeRange": { "description": "The typical expected age range, e.g. '7-9', '11-'.", "type": "string" }, "workFeatured": { "description": "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).", "oneOf": [ { "$ref": "http://schema.org/CreativeWork" }, { "items": { "$ref": "http://schema.org/CreativeWork" }, "type": "array" } ] }, "workPerformed": { "description": "A work performed in some event, for example a play performed in a TheaterEvent.", "oneOf": [ { "$ref": "http://schema.org/CreativeWork" }, { "items": { "$ref": "http://schema.org/CreativeWork" }, "type": "array" } ] } }, "title": "Event", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/Blog.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Blog", "$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 blog.", "format": "http://schema.org/Blog", "properties": { "blogPost": { "description": "A posting that is part of this blog.", "oneOf": [ { "$ref": "BlogPosting.schema.json" }, { "items": { "$ref": "BlogPosting.schema.json" }, "type": "array" } ] }, "blogPosts": { "$ref": "BlogPosting.schema.json", "description": "The postings that are part of this blog." }, "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": "Blog", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Reservation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Reservation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "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": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use Offer.", "properties": { "bookingAgent": { "description": "'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "bookingTime": { "description": "The date and time the reservation was booked.", "format": "date-time", "type": "string" }, "broker": { "description": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "modifiedTime": { "description": "The date and time the reservation was modified.", "format": "date-time", "type": "string" }, "priceCurrency": { "description": "The currency of the price, or a price component when attached to PriceSpecification and its subtypes.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".", "type": "string" }, "programMembershipUsed": { "description": "Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.", "oneOf": [ { "$ref": "http://schema.org/ProgramMembership" }, { "items": { "$ref": "http://schema.org/ProgramMembership" }, "type": "array" } ] }, "provider": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/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." }, "reservationFor": { "$ref": "http://schema.org/Thing", "description": "The thing -- flight, event, restaurant,etc. being reserved." }, "reservationId": { "description": "A unique identifier for the reservation.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "reservationStatus": { "$ref": "http://schema.org/ReservationStatusType", "description": "The current status of the reservation." }, "reservedTicket": { "description": "A ticket associated with the reservation.", "oneOf": [ { "$ref": "http://schema.org/Ticket" }, { "items": { "$ref": "http://schema.org/Ticket" }, "type": "array" } ] }, "totalPrice": { "anyOf": [ { "type": "number" }, { "type": "string" }, { "$ref": "http://schema.org/PriceSpecification" } ], "description": "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\n\nUsage guidelines:\n\n\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n" }, "underName": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "The person or organization the reservation or ticket is for." } }, "title": "Reservation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/SurgicalProcedure.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:SurgicalProcedure", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:MedicalProcedure", "description": "A process of care used in either a diagnostic, therapeutic, preventive or palliative capacity that relies on invasive (surgical), non-invasive, or other techniques." } ], "description": "A medical procedure involving an incision with instruments; performed for diagnose, or therapeutic purposes.", "title": "SurgicalProcedure", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/DrinkAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DrinkAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ConsumeAction.schema.json", "description": "The act of ingesting information/resources/food." } ], "description": "The act of swallowing liquids.", "format": "http://schema.org/DrinkAction", "title": "DrinkAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/WPAdBlock.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/WPAdBlock", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "WebPageElement.schema.json", "description": "A web page element, like a table or an image." } ], "description": "An advertising section of the page.", "format": "http://schema.org/WPAdBlock", "title": "WPAdBlock", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/RadioSeries.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/RadioSeries", "$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": "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.", "properties": { "actor": { "description": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "actors": { "description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "containsSeason": { "description": "A season that is part of the media series.", "oneOf": [ { "$ref": "http://schema.org/CreativeWorkSeason" }, { "items": { "$ref": "http://schema.org/CreativeWorkSeason" }, "type": "array" } ] }, "director": { "$ref": "http://schema.org/Person", "description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip." }, "directors": { "description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "episode": { "description": "An episode of a tv, radio or game media within a series or season.", "oneOf": [ { "$ref": "http://schema.org/Episode" }, { "items": { "$ref": "http://schema.org/Episode" }, "type": "array" } ] }, "episodes": { "description": "An episode of a TV/radio series or season.", "oneOf": [ { "$ref": "http://schema.org/Episode" }, { "items": { "$ref": "http://schema.org/Episode" }, "type": "array" } ] }, "musicBy": { "anyOf": [ { "$ref": "http://schema.org/MusicGroup" }, { "$ref": "http://schema.org/Person" } ], "description": "The composer of the soundtrack." }, "numberOfEpisodes": { "description": "The number of episodes in this season or series.", "type": "integer" }, "numberOfSeasons": { "description": "The number of seasons in this series.", "type": "integer" }, "productionCompany": { "$ref": "http://schema.org/Organization", "description": "The production company or studio responsible for the item e.g. series, video game, episode etc." }, "season": { "description": "A season in a media series.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWorkSeason" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWorkSeason" } ] }, "type": "array" } ] }, "seasons": { "description": "A season in a media series.", "oneOf": [ { "$ref": "http://schema.org/CreativeWorkSeason" }, { "items": { "$ref": "http://schema.org/CreativeWorkSeason" }, "type": "array" } ] }, "trailer": { "$ref": "http://schema.org/VideoObject", "description": "The trailer of a movie or tv/radio series, season, episode, etc." } }, "title": "RadioSeries", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/CityHall.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CityHall", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "GovernmentBuilding.schema.json", "description": "A government building." } ], "description": "A city hall.", "format": "http://schema.org/CityHall", "title": "CityHall", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/URL.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:URL", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Text", "description": "Data type: Text." } ], "description": "Data type: URL.", "title": "URL", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/LinkRole.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:LinkRole", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Role", "description": "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\\n\\nSee also [blog post](http://blog.schema.org/2014/06/introducing-role.html)." } ], "description": "A Role that represents a Web link e.g. as expressed via the 'url' property. Its linkRelationship property can indicate URL-based and plain textual link types e.g. those in IANA link registry or others such as 'amphtml'. This structure provides a placeholder where details from HTML's link element can be represented outside of HTML, e.g. in JSON-LD feeds.", "properties": { "inLanguage": { "anyOf": [ { "type": "string" }, { "$ref": "schema:Language" } ], "description": "The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]." }, "linkRelationship": { "description": "Indicates the relationship type of a Web link. ", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "title": "LinkRole", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/ServiceChannel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ServiceChannel", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "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 means for accessing a service, e.g. a government office location, web site, or phone number.", "format": "http://schema.org/ServiceChannel", "properties": { "availableLanguage": { "description": "A language someone may use with or at the item, service or place. Please use one of the language codes from the IETF BCP 47 standard. See also inLanguage", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "Language.schema.json" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "Language.schema.json" } ] }, "type": "array" } ] }, "processingTime": { "description": "Estimated processing time for the service using this channel.", "format": "https://schema.org/Duration", "type": "string" }, "providesService": { "$ref": "Service.schema.json", "description": "The service provided by this channel." }, "serviceLocation": { "$ref": "Place.schema.json", "description": "The location (e.g. civic structure, local business, etc.) where a person can go to access the service." }, "servicePhone": { "$ref": "ContactPoint.schema.json", "description": "The phone number to use to access the service." }, "servicePostalAddress": { "$ref": "PostalAddress.schema.json", "description": "The address for accessing the service by mail." }, "serviceSmsNumber": { "$ref": "ContactPoint.schema.json", "description": "The number to access the service by text message." }, "serviceUrl": { "description": "The website to access the service.", "format": "uri", "type": "string" } }, "title": "ServiceChannel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
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", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Duration" } }, "required": [ "@type" ], "title": "Duration", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Book.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Book", "$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 book.", "properties": { "bookEdition": { "description": "The edition of the book.", "type": "string" }, "bookFormat": { "$ref": "http://schema.org/BookFormatType", "description": "The format of the book." }, "illustrator": { "$ref": "http://schema.org/Person", "description": "The illustrator of the book." }, "isbn": { "description": "The ISBN of the book.", "type": "string" }, "numberOfPages": { "description": "The number of pages in the book.", "type": "integer" } }, "title": "Book", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/CheckInAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CheckInAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "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 an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).\n\nRelated actions:\n\n\nCheckOutAction: The antonym of CheckInAction.\nArriveAction: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.\nConfirmAction: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service rather than its validity/existence.\n\n", "format": "http://schema.org/CheckInAction", "title": "CheckInAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Flight.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Flight", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Trip.schema.json", "description": "A trip or journey. An itinerary of visits to one or more places." } ], "description": "An airline flight.", "format": "http://schema.org/Flight", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Flight" }, "aircraft": { "anyOf": [ { "type": "string" }, { "$ref": "Vehicle.schema.json" } ], "description": "The kind of aircraft (e.g., \"Boeing 747\")." }, "arrivalAirport": { "$ref": "Airport.schema.json", "description": "The airport where the flight terminates." }, "arrivalGate": { "description": "Identifier of the flight's arrival gate.", "items": { "type": "string" }, "type": "array" }, "arrivalTerminal": { "description": "Identifier of the flight's arrival terminal.", "items": { "type": "string" }, "type": "array" }, "boardingPolicy": { "$ref": "BoardingPolicyType.schema.json", "description": "The type of boarding policy used by the airline (e.g. zone-based or group-based)." }, "carrier": { "$ref": "Organization.schema.json", "description": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights." }, "departureAirport": { "$ref": "Airport.schema.json", "description": "The airport where the flight originates." }, "departureGate": { "description": "Identifier of the flight's departure gate.", "items": { "type": "string" }, "type": "array" }, "departureTerminal": { "description": "Identifier of the flight's departure terminal.", "items": { "type": "string" }, "type": "array" }, "estimatedFlightDuration": { "anyOf": [ { "format": "https://schema.org/Duration", "type": "string" }, { "type": "string" } ], "description": "The estimated time the flight will take." }, "flightDistance": { "anyOf": [ { "format": "https://schema.org/Distance", "type": "string" }, { "type": "string" } ], "description": "The distance of the flight." }, "flightNumber": { "description": "The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.", "type": "string" }, "mealService": { "description": "Description of the meals that will be provided or available for purchase.", "items": { "type": "string" }, "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." }, "webCheckinTime": { "description": "The time when a passenger can check into the flight online.", "format": "date-time", "type": "string" } }, "required": [ "@type" ], "title": "Flight", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c
2020-05-13T21:31:46
schemas/BuyAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BuyAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TradeAction.schema.json", "description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment." } ], "description": "The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction.", "format": "http://schema.org/BuyAction", "properties": { "seller": { "anyOf": [ { "$ref": "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." }, "vendor": { "description": "'vendor' is an earlier term for 'seller'.", "items": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "warrantyPromise": { "$ref": "WarrantyPromise.schema.json", "description": "The warranty promise(s) included in the offer." } }, "title": "BuyAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/SoftwareSourceCode.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SoftwareSourceCode", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.", "format": "http://schema.org/SoftwareSourceCode", "properties": { "codeRepository": { "description": "Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).", "items": { "format": "uri", "type": "string" }, "type": "array" }, "codeSampleType": { "description": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.", "items": { "type": "string" }, "type": "array" }, "programmingLanguage": { "description": "The computer programming language.", "items": { "oneOf": [ { "type": "string" }, { "$ref": "ComputerLanguage.schema.json" } ] }, "type": "array" }, "runtime": { "description": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).", "type": "string" }, "runtimePlatform": { "description": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).", "items": { "type": "string" }, "type": "array" }, "sampleType": { "description": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.", "type": "string" }, "targetProduct": { "description": "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.", "items": { "$ref": "SoftwareApplication.schema.json" }, "type": "array" } }, "title": "SoftwareSourceCode", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
schemas/DonateAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DonateAction", "$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 providing goods, services, or money without compensation, often for philanthropic reasons.", "format": "http://schema.org/DonateAction", "properties": { "recipient": { "description": "A sub property of participant. The participant who is at the receiving end of the action.", "items": { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" } }, "title": "DonateAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/GenderType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GenderType", "$schema": "http://json-schema.org/draft-07/schema#", "description": "An enumeration of genders.", "format": "http://schema.org/GenderType", "oneOf": [ { "const": "Male", "description": "The male gender." }, { "const": "Female", "description": "The female gender." } ], "title": "GenderType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/InternetCafe.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/InternetCafe", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/LocalBusiness", "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc." } ], "description": "An internet cafe.", "title": "InternetCafe", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/UserPlusOnes.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/UserPlusOnes", "$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/UserPlusOnes", "title": "UserPlusOnes", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
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.", "items": { "$ref": "ActionStatusType.schema.json" }, "type": "array" }, "agent": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "The direct performer or driver of the action (animate or inanimate). e.g. John wrote a book." }, "endTime": { "anyOf": [ { "format": "time", "type": "string" }, { "format": "date-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.", "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": [ { "$ref": "Place.schema.json" }, { "type": "string" }, { "$ref": "PostalAddress.schema.json" } ], "description": "The location of for example where the event is happening, an organization is located, or where an action takes place." }, "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.", "items": { "oneOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.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": "time", "type": "string" }, { "format": "date-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.", "items": { "$ref": "EntryPoint.schema.json" }, "type": "array" } }, "title": "Action", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/MusicRecording.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MusicRecording", "$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 music recording (track), usually a single song.", "format": "http://schema.org/MusicRecording", "properties": { "byArtist": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "MusicGroup.schema.json" } ], "description": "The artist that performed this album or recording." }, "duration": { "$ref": "Duration.schema.json", "description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format." }, "inAlbum": { "$ref": "MusicAlbum.schema.json", "description": "The album to which this recording belongs." }, "inPlaylist": { "$ref": "MusicPlaylist.schema.json", "description": "The playlist to which this recording belongs." }, "isrcCode": { "description": "The International Standard Recording Code for the recording.", "format": "http://schema.org/Text" }, "recordingOf": { "$ref": "MusicComposition.schema.json", "description": "The composition this track is a recording of." } }, "title": "MusicRecording", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ExhibitionEvent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ExhibitionEvent", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Event", "description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects." } ], "description": "Event type: Exhibition event, e.g. at a museum, library, archive, tradeshow, ...", "title": "ExhibitionEvent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Attorney.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Attorney", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "LegalService.schema.json", "description": "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s)." } ], "description": "Professional service: Attorney. \n\nThis type is deprecated - LegalService is more inclusive and less ambiguous.", "format": "http://schema.org/Attorney", "title": "Attorney", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/Review.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Review", "$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 review of an item - for example, of a restaurant, movie, or store.", "format": "http://schema.org/Review", "properties": { "itemReviewed": { "$ref": "Thing.schema.json", "description": "The item that is being reviewed/rated." }, "reviewAspect": { "description": "This Review or Rating is relevant to this part or facet of the itemReviewed.", "items": { "type": "string" }, "type": "array" }, "reviewBody": { "description": "The actual body of the review.", "type": "string" }, "reviewRating": { "$ref": "Rating.schema.json", "description": "The rating given in this review. Note that reviews can themselves be rated. The reviewRating applies to rating given by the review. The aggregateRating property applies to the review itself, as a creative work." } }, "title": "Review", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/DisagreeAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DisagreeAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ReactAction.schema.json", "description": "The act of responding instinctively and emotionally to an object, expressing a sentiment." } ], "description": "The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants.", "format": "http://schema.org/DisagreeAction", "title": "DisagreeAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ActivateAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ActivateAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/ControlAction", "description": "An agent controls a device or application." } ], "description": "The act of starting or activating a device or application (e.g. starting a timer or turning on a flashlight).", "title": "ActivateAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/BedDetails.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:BedDetails", "$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": "An entity holding detailed information about the available bed types, e.g. the quantity of twin beds for a hotel room. For the single case of just one bed of a certain type, you can use bed directly with a text. See also [[BedType]] (under development).", "properties": { "numberOfBeds": { "description": "The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.", "type": "number" }, "typeOfBed": { "anyOf": [ { "type": "string" }, { "$ref": "schema:BedType" } ], "description": "The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity." } }, "title": "BedDetails", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/PerformingGroup.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PerformingGroup", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Organization", "description": "An organization such as a school, NGO, corporation, club, etc." } ], "description": "A performance group, such as a band, an orchestra, or a circus.", "format": "http://schema.org/PerformingGroup", "title": "PerformingGroup", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/MovieRentalStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MovieRentalStore", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Store", "description": "A retail good store." } ], "description": "A movie rental store.", "format": "http://schema.org/MovieRentalStore", "title": "MovieRentalStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/OrganizeAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/OrganizeAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Action", "description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document." } ], "description": "The act of manipulating/administering/supervising/controlling one or more objects.", "format": "http://schema.org/OrganizeAction", "title": "OrganizeAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Distillery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Distillery", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/FoodEstablishment", "description": "A food-related business." } ], "description": "A distillery.", "format": "http://schema.org/Distillery", "title": "Distillery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/ImageGallery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:ImageGallery", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:MediaGallery", "description": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia." } ], "description": "Web page type: Image gallery page.", "title": "ImageGallery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Suite.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Suite", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Accommodation", "description": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n" } ], "description": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_(hotel)).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n", "properties": { "bed": { "anyOf": [ { "type": "string" }, { "$ref": "schema:BedDetails" }, { "$ref": "schema:BedType" } ], "description": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property." }, "numberOfRooms": { "anyOf": [ { "type": "number" }, { "$ref": "schema:QuantitativeValue" } ], "description": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue." }, "occupancy": { "$ref": "schema:QuantitativeValue", "description": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person" } }, "title": "Suite", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/ElectronicsStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ElectronicsStore", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Store.schema.json", "description": "A retail good store." } ], "description": "An electronics store.", "format": "http://schema.org/ElectronicsStore", "title": "ElectronicsStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/GroceryStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:GroceryStore", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Store", "description": "A retail good store." } ], "description": "A grocery store.", "title": "GroceryStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/HotelRoom.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:HotelRoom", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Room", "description": "A room is a distinguishable space within a structure, usually separated from other spaces by interior walls. (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Room).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n" } ], "description": "A hotel room is a single room in a hotel.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.\n", "properties": { "bed": { "anyOf": [ { "type": "string" }, { "$ref": "schema:BedDetails" }, { "$ref": "schema:BedType" } ], "description": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property." }, "occupancy": { "$ref": "schema:QuantitativeValue", "description": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person" } }, "title": "HotelRoom", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
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", "title": "DeactivateAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
d93f16a26bf98d23eb806d03ccce08d7cf15b99a
2020-05-20T22:06:03
schemas/CommunicateAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CommunicateAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "InteractAction.schema.json", "description": "The act of interacting with another person or organization." } ], "description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.", "format": "http://schema.org/CommunicateAction", "properties": { "about": { "$ref": "Thing.schema.json", "description": "The subject matter of the content." }, "inLanguage": { "anyOf": [ { "type": "string" }, { "$ref": "Language.schema.json" } ], "description": "The language of the content or performance or used in an action. Please use one of the language codes from the IETF BCP 47 standard. See also availableLanguage." }, "language": { "description": "A sub property of instrument. The language used on this action.", "items": { "$ref": "Language.schema.json" }, "type": "array" }, "recipient": { "description": "A sub property of participant. The participant who is at the receiving end of the action.", "items": { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" } }, "title": "CommunicateAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/CatholicChurch.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CatholicChurch", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Church.schema.json", "description": "A church." } ], "description": "A Catholic church.", "format": "http://schema.org/CatholicChurch", "title": "CatholicChurch", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/QualitativeValue.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/QualitativeValue", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Enumeration.schema.json", "description": "Lists or enumerations\u2014for example, a list of cuisines or music genres, etc." } ], "description": "A predefined value for a product characteristic, e.g. the power cord plug type 'US' or the garment sizes 'S', 'M', 'L', and 'XL'.", "format": "http://schema.org/QualitativeValue", "properties": { "additionalProperty": { "description": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.", "items": { "$ref": "PropertyValue.schema.json" }, "type": "array" }, "equal": { "description": "This ordering relation for qualitative values indicates that the subject is equal to the object.", "items": { "$ref": "QualitativeValue.schema.json" }, "type": "array" }, "greater": { "description": "This ordering relation for qualitative values indicates that the subject is greater than the object.", "items": { "$ref": "QualitativeValue.schema.json" }, "type": "array" }, "greaterOrEqual": { "description": "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.", "items": { "$ref": "QualitativeValue.schema.json" }, "type": "array" }, "lesser": { "description": "This ordering relation for qualitative values indicates that the subject is lesser than the object.", "items": { "$ref": "QualitativeValue.schema.json" }, "type": "array" }, "lesserOrEqual": { "description": "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.", "items": { "$ref": "QualitativeValue.schema.json" }, "type": "array" }, "nonEqual": { "description": "This ordering relation for qualitative values indicates that the subject is not equal to the object.", "items": { "$ref": "QualitativeValue.schema.json" }, "type": "array" }, "valueReference": { "description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.", "items": { "oneOf": [ { "$ref": "PropertyValue.schema.json" }, { "$ref": "QualitativeValue.schema.json" }, { "$ref": "StructuredValue.schema.json" }, { "$ref": "Enumeration.schema.json" }, { "$ref": "QuantitativeValue.schema.json" } ] }, "type": "array" } }, "title": "QualitativeValue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
a130ffcce9e85373dea613894f00d76d0dfaa9e1
2020-05-23T02:39:19
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": "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": "A direction indicating a single action to do in the instructions for how to achieve a result.", "properties": { "afterMedia": { "description": "A media object representing the circumstances after performing this direction.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/MediaObject" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/MediaObject" } ] }, "type": "array" } ] }, "beforeMedia": { "description": "A media object representing the circumstances before performing this direction.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/MediaObject" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/MediaObject" } ] }, "type": "array" } ] }, "duringMedia": { "description": "A media object representing the circumstances while performing this direction.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/MediaObject" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/MediaObject" } ] }, "type": "array" } ] }, "performTime": { "$comment": "https://schema.org/Duration", "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.", "type": "string" }, "prepTime": { "$comment": "https://schema.org/Duration", "description": "The length of time it takes to prepare the items to be used in instructions or a direction, in ISO 8601 duration format.", "type": "string" }, "supply": { "description": "A sub-property of instrument. A supply consumed when performing instructions or a direction.", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/HowToSupply" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/HowToSupply" } ] }, "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": "http://schema.org/HowToTool" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/HowToTool" } ] }, "type": "array" } ] }, "totalTime": { "$comment": "https://schema.org/Duration", "description": "The total time required to perform instructions or a direction (including time to prepare the supplies), in ISO 8601 duration format.", "type": "string" } }, "title": "HowToDirection", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/Hostel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Hostel", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "LodgingBusiness.schema.json", "description": "A lodging business, such as a motel, hotel, or inn." } ], "description": "A hostel - cheap accommodation, often in shared dormitories.\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/Hostel", "title": "Hostel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
d93f16a26bf98d23eb806d03ccce08d7cf15b99a
2020-05-20T22:06:03
schemas/Suite.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Suite", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Accommodation.schema.json", "description": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations." } ], "description": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_(hotel)).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.", "format": "http://schema.org/Suite", "properties": { "bed": { "anyOf": [ { "type": "string" }, { "$ref": "BedDetails.schema.json" }, { "$ref": "BedType.schema.json" } ], "description": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property." }, "numberOfRooms": { "anyOf": [ { "type": "number" }, { "$ref": "QuantitativeValue.schema.json" } ], "description": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue." }, "occupancy": { "$ref": "QuantitativeValue.schema.json", "description": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person" } }, "title": "Suite", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/BankOrCreditUnion.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:BankOrCreditUnion", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:FinancialService", "description": "Financial services business." } ], "description": "Bank or credit union.", "title": "BankOrCreditUnion", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/AggregateRating.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AggregateRating", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Rating.schema.json", "description": "A rating is an evaluation on a numeric scale, such as 1 to 5 stars." } ], "description": "The average rating based on multiple ratings or reviews.", "format": "http://schema.org/AggregateRating", "properties": { "itemReviewed": { "$ref": "Thing.schema.json", "description": "The item that is being reviewed/rated." }, "ratingCount": { "description": "The count of total number of ratings.", "type": "integer" }, "reviewCount": { "description": "The count of total number of reviews.", "type": "integer" } }, "title": "AggregateRating", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/PropertyValue.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PropertyValue", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "StructuredValue.schema.json", "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing." } ], "description": "A property-value pair, e.g. representing a feature of a product or place. Use the 'name' property for the name of the property. If there is an additional human-readable version of the value, put that into the 'description' property.\n\nAlways use specific schema.org properties when a) they exist and b) you can populate them. Using PropertyValue as a substitute will typically not trigger the same effect as using the original, specific property.", "format": "http://schema.org/PropertyValue", "properties": { "maxValue": { "description": "The upper value of some characteristic or property.", "type": "number" }, "minValue": { "description": "The lower value of some characteristic or property.", "type": "number" }, "propertyID": { "description": "A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be\n(1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific id of the property), or (3)\na URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry).\nStandards bodies should promote a standard prefix for the identifiers of properties from their standards.", "items": { "oneOf": [ { "type": "string" }, { "format": "uri", "type": "string" } ] }, "type": "array" }, "unitCode": { "anyOf": [ { "type": "string" }, { "format": "uri", "type": "string" } ], "description": "The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon." }, "unitText": { "description": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.", "items": { "type": "string" }, "type": "array" }, "value": { "anyOf": [ { "type": "number" }, { "type": "string" }, { "type": "boolean" }, { "$ref": "StructuredValue.schema.json" } ], "description": "The value of the quantitative value or property value node.\n\n\nFor QuantitativeValue and MonetaryAmount, the recommended type for values is 'Number'.\nFor PropertyValue, it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n" }, "valueReference": { "description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.", "items": { "oneOf": [ { "$ref": "PropertyValue.schema.json" }, { "$ref": "QualitativeValue.schema.json" }, { "$ref": "StructuredValue.schema.json" }, { "$ref": "Enumeration.schema.json" }, { "$ref": "QuantitativeValue.schema.json" } ] }, "type": "array" } }, "title": "PropertyValue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Audience.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Audience", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "Intended audience for an item, i.e. the group for whom the item was created.", "format": "http://schema.org/Audience", "properties": { "audienceType": { "description": "The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.).", "format": "http://schema.org/Text" }, "geographicArea": { "$ref": "AdministrativeArea.schema.json", "description": "The geographic area associated with the audience." } }, "title": "Audience", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/GeneralContractor.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GeneralContractor", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/HomeAndConstructionBusiness", "description": "A construction business.\n\nA HomeAndConstructionBusiness is a LocalBusiness that provides services around homes and buildings.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s)." } ], "description": "A general contractor.", "title": "GeneralContractor", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/ContactPoint.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ContactPoint", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "StructuredValue.schema.json", "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing." } ], "description": "A contact point\u2014for example, a Customer Complaints department.", "format": "http://schema.org/ContactPoint", "properties": { "areaServed": { "anyOf": [ { "$ref": "AdministrativeArea.schema.json" }, { "$ref": "Place.schema.json" }, { "$ref": "GeoShape.schema.json" } ], "description": "The geographic area where a service or offered item is provided." }, "availableLanguage": { "description": "A language someone may use with or at the item, service or place. Please use one of the language codes from the IETF BCP 47 standard. See also inLanguage", "items": { "$ref": "Language.schema.json" }, "type": "array" }, "contactOption": { "description": "An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers).", "items": { "$ref": "ContactPointOption.schema.json" }, "type": "array" }, "contactType": { "description": "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.", "format": "http://schema.org/Text" }, "email": { "description": "Email address.", "format": "http://schema.org/Text" }, "faxNumber": { "description": "The fax number.", "format": "http://schema.org/Text" }, "hoursAvailable": { "$ref": "OpeningHoursSpecification.schema.json", "description": "The hours during which this service or contact is available." }, "productSupported": { "$ref": "Product.schema.json", "description": "The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. \"iPhone\") or a general category of products or services (e.g. \"smartphones\")." }, "serviceArea": { "anyOf": [ { "$ref": "AdministrativeArea.schema.json" }, { "$ref": "Place.schema.json" }, { "$ref": "GeoShape.schema.json" } ], "description": "The geographic area where the service is provided." }, "telephone": { "description": "The telephone number.", "format": "http://schema.org/Text" } }, "title": "ContactPoint", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Motorcycle.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Motorcycle", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Vehicle", "description": "A vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space." } ], "description": "A motorcycle or motorbike is a single-track, two-wheeled motor vehicle.", "title": "Motorcycle", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
836707371bd5157a43e93dd1653717a7f932db13
2020-05-11T23:21:31
schemas/Movie.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Movie", "$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 movie.", "format": "http://schema.org/Movie", "properties": { "actor": { "description": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "actors": { "description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "countryOfOrigin": { "$ref": "Country.schema.json", "description": "The country of the principal offices of the production company or individual responsible for the movie or program." }, "director": { "$ref": "Person.schema.json", "description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip." }, "directors": { "description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "duration": { "description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.", "format": "https://schema.org/Duration", "type": "string" }, "musicBy": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "MusicGroup.schema.json" } ], "description": "The composer of the soundtrack." }, "productionCompany": { "$ref": "Organization.schema.json", "description": "The production company or studio responsible for the item e.g. series, video game, episode etc." }, "trailer": { "$ref": "VideoObject.schema.json", "description": "The trailer of a movie or tv/radio series, season, episode, etc." } }, "title": "Movie", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/DonateAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DonateAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/TradeAction", "description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment." } ], "description": "The act of providing goods, services, or money without compensation, often for philanthropic reasons.", "format": "http://schema.org/DonateAction", "properties": { "recipient": { "description": "A sub property of participant. The participant who is at the receiving end of the action.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Audience" }, { "$ref": "http://schema.org/ContactPoint" }, { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Audience" }, { "$ref": "http://schema.org/ContactPoint" }, { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] } }, "title": "DonateAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Role.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Role", "$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": "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n\nSee also blog post.", "format": "http://schema.org/Role", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Role" }, "endDate": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The end date and time of the item (in ISO 8601 date format)." }, "namedPosition": { "description": "A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, "type": "array" }, "roleName": { "description": "A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, "type": "array" }, "startDate": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The start date and time of the item (in ISO 8601 date format)." } }, "required": [ "@type" ], "title": "Role", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Cemetery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Cemetery", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CivicStructure", "description": "A public structure, such as a town hall or concert hall." } ], "description": "A graveyard.", "format": "http://schema.org/Cemetery", "title": "Cemetery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/FAQPage.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:FAQPage", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema: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 [[FAQPage]] is a [[WebPage]] presenting one or more \"[Frequently asked questions](https://en.wikipedia.org/wiki/FAQ)\" (see also [[QAPage]]).", "title": "FAQPage", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/GardenStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GardenStore", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Store.schema.json", "description": "A retail good store." } ], "description": "A garden store.", "format": "http://schema.org/GardenStore", "title": "GardenStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Notary.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Notary", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/LegalService", "description": "A LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s)." } ], "description": "A notary.", "title": "Notary", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c
2020-05-13T21:31:46
schemas/Brand.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Brand", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "A brand is a name used by an organization or business person for labeling a product, product group, or similar.", "format": "http://schema.org/Brand", "properties": { "aggregateRating": { "$ref": "AggregateRating.schema.json", "description": "The overall rating, based on a collection of reviews or ratings, of the item." }, "logo": { "description": "An associated logo.", "items": { "anyOf": [ { "$ref": "ImageObject.schema.json" }, { "format": "uri", "type": "string" } ] }, "type": "array" }, "review": { "description": "A review of the item.", "items": { "$ref": "Review.schema.json" }, "type": "array" }, "slogan": { "description": "A slogan or motto associated with the item.", "items": { "type": "string" }, "type": "array" } }, "title": "Brand", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/BookSeries.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BookSeries", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWorkSeries.schema.json", "description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike ItemList which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\n\nSpecific subtypes are available for describing TVSeries, RadioSeries, MovieSeries, BookSeries, Periodical and VideoGameSeries. In each case, the hasPart / isPartOf properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\n\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate." } ], "description": "A series of books. Included books can be indicated with the hasPart property.", "format": "http://schema.org/BookSeries", "title": "BookSeries", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/SearchAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SearchAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Action.schema.json", "description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document." } ], "description": "The act of searching for an object.\n\nRelated actions:\n\n\nFindAction: SearchAction generally leads to a FindAction, but not necessarily.\n\n", "format": "http://schema.org/SearchAction", "properties": { "query": { "description": "A sub property of instrument. The query used on this action.", "format": "http://schema.org/Text" } }, "title": "SearchAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/RVPark.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/RVPark", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CivicStructure", "description": "A public structure, such as a town hall or concert hall." } ], "description": "A place offering space for \"Recreational Vehicles\", Caravans, mobile homes and the like.", "title": "RVPark", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/RVPark.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/RVPark", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CivicStructure.schema.json", "description": "A public structure, such as a town hall or concert hall." } ], "description": "A place offering space for \"Recreational Vehicles\", Caravans, mobile homes and the like.", "format": "http://schema.org/RVPark", "title": "RVPark", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ReservationPackage.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ReservationPackage", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Reservation", "description": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use Offer." } ], "description": "A group of multiple reservations with common values for all sub-reservations.", "properties": { "subReservation": { "$ref": "http://schema.org/Reservation", "description": "The individual reservations included in the package. Typically a repeated property." } }, "title": "ReservationPackage", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/Question.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Question", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.", "format": "http://schema.org/Question", "properties": { "acceptedAnswer": { "anyOf": [ { "$ref": "Answer.schema.json" }, { "$ref": "ItemList.schema.json" } ], "description": "The answer(s) that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author." }, "answerCount": { "description": "The number of answers this question has received.", "type": "integer" }, "downvoteCount": { "description": "The number of downvotes this question, answer or comment has received from the community.", "type": "integer" }, "suggestedAnswer": { "description": "An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.", "oneOf": [ { "anyOf": [ { "$ref": "Answer.schema.json" }, { "$ref": "ItemList.schema.json" } ] }, { "items": { "anyOf": [ { "$ref": "Answer.schema.json" }, { "$ref": "ItemList.schema.json" } ] }, "type": "array" } ] }, "upvoteCount": { "description": "The number of upvotes this question, answer or comment has received from the community.", "type": "integer" } }, "title": "Question", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
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": "InsertAction.schema.json", "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
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/ReceiveAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ReceiveAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TransferAction.schema.json", "description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another." } ], "description": "The act of physically/electronically taking delivery of an object thathas been transferred from an origin to a destination. Reciprocal of SendAction.\n\nRelated actions:\n\n\nSendAction: The reciprocal of ReceiveAction.\nTakeAction: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transfered (e.g. I can receive a package, but it does not mean the package is now mine).\n\n", "format": "http://schema.org/ReceiveAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ReceiveAction" }, "deliveryMethod": { "description": "A sub property of instrument. The method of delivery.", "items": { "$ref": "DeliveryMethod.schema.json" }, "type": "array" }, "sender": { "description": "A sub property of participant. The participant who is at the sending end of the action.", "items": { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" } }, "required": [ "@type" ], "title": "ReceiveAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ReplyAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ReplyAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "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 responding to a question/message asked/sent by the object. Related to AskAction\n\nRelated actions:\n\n\nAskAction: Appears generally as an origin of a ReplyAction.\n\n", "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": "ReplyAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/HotelRoom.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HotelRoom", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Room.schema.json", "description": "A room is a distinguishable space within a structure, usually separated from other spaces by interior walls. (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Room).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations." } ], "description": "A hotel room is a single room in a hotel.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.", "format": "http://schema.org/HotelRoom", "properties": { "bed": { "anyOf": [ { "$ref": "BedType.schema.json" }, { "type": "string" }, { "$ref": "BedDetails.schema.json" } ], "description": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property." }, "occupancy": { "$ref": "QuantitativeValue.schema.json", "description": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person" } }, "title": "HotelRoom", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/BusinessFunction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BusinessFunction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Enumeration.schema.json", "description": "Lists or enumerations\u2014for example, a list of cuisines or music genres, etc." } ], "description": "The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\n\nCommonly used values:\n\n\nhttp://purl.org/goodrelations/v1#ConstructionInstallation\nhttp://purl.org/goodrelations/v1#Dispose\nhttp://purl.org/goodrelations/v1#LeaseOut\nhttp://purl.org/goodrelations/v1#Maintain\nhttp://purl.org/goodrelations/v1#ProvideService\nhttp://purl.org/goodrelations/v1#Repair\nhttp://purl.org/goodrelations/v1#Sell\nhttp://purl.org/goodrelations/v1#Buy\n\n", "format": "http://schema.org/BusinessFunction", "title": "BusinessFunction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
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": { "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.", "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.", "items": { "type": "string" }, "type": "array" }, "recipeInstructions": { "anyOf": [ { "$ref": "CreativeWork.schema.json" }, { "$ref": "ItemList.schema.json" }, { "type": "string" } ], "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": [ { "$ref": "QuantitativeValue.schema.json" }, { "type": "string" } ], "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.", "items": { "$ref": "RestrictedDiet.schema.json" }, "type": "array" } }, "title": "Recipe", "type": "object" }
Apache-2.0
en