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/LiveBlogPosting.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/LiveBlogPosting", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/BlogPosting", "description": "A blog post." } ], "description": "A blog post intended to provide a rolling textual coverage of an ongoing event through continuous updates.", "format": "http://schema.org/LiveBlogPosting", "properties": { "coverageEndTime": { "description": "The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.", "format": "date-time", "type": "string" }, "coverageStartTime": { "description": "The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.", "format": "date-time", "type": "string" }, "liveBlogUpdate": { "description": "An update to the LiveBlog.", "oneOf": [ { "$ref": "http://schema.org/BlogPosting" }, { "items": { "$ref": "http://schema.org/BlogPosting" }, "type": "array" } ] } }, "title": "LiveBlogPosting", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ActionStatusType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ActionStatusType", "$schema": "http://json-schema.org/draft-07/schema#", "description": "The status of an Action.", "oneOf": [ { "const": "ActiveActionStatus", "description": "An in-progress action (e.g, while watching the movie, or driving to a location)." }, { "const": "CompletedActionStatus", "description": "An action that has already taken place." }, { "const": "FailedActionStatus", "description": "An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure." }, { "const": "PotentialActionStatus", "description": "A description of an action that is supported." } ], "title": "ActionStatusType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/RealEstateAgent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/RealEstateAgent", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "LocalBusiness.schema.json", "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc." } ], "description": "A real-estate agent.", "format": "http://schema.org/RealEstateAgent", "title": "RealEstateAgent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/ResumeAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ResumeAction", "$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 resuming a device or application which was formerly paused (e.g. resume music playback or resume a timer).", "format": "http://schema.org/ResumeAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ResumeAction" } }, "required": [ "@type" ], "title": "ResumeAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Country.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Country", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "AdministrativeArea.schema.json", "description": "A geographical region, typically under the jurisdiction of a particular government." } ], "description": "A country.", "format": "http://schema.org/Country", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Country" } }, "required": [ "@type" ], "title": "Country", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
d93f16a26bf98d23eb806d03ccce08d7cf15b99a
2020-05-20T22:06:03
schemas/Thing.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Thing", "$schema": "http://json-schema.org/draft-07/schema#", "description": "The most generic type of item.", "format": "http://schema.org/Thing", "properties": { "additionalType": { "description": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.", "items": { "format": "uri", "type": "string" }, "type": "array" }, "alternateName": { "description": "An alias for the item.", "items": { "type": "string" }, "type": "array" }, "description": { "description": "A description of the item.", "items": { "type": "string" }, "type": "array" }, "disambiguatingDescription": { "description": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.", "items": { "type": "string" }, "type": "array" }, "identifier": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "PropertyValue.schema.json" } ], "description": "The identifier property represents any kind of identifier for any kind of Thing, such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See background notes for more details." }, "image": { "description": "An image of the item. This can be a URL or a fully described ImageObject.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "ImageObject.schema.json" } ] }, "type": "array" }, "mainEntityOfPage": { "description": "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See background notes for details.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "CreativeWork.schema.json" } ] }, "type": "array" }, "name": { "description": "The name of the item.", "type": "string" }, "potentialAction": { "description": "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.", "items": { "$ref": "Action.schema.json" }, "type": "array" }, "sameAs": { "description": "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.", "items": { "format": "uri", "type": "string" }, "type": "array" }, "subjectOf": { "description": "A CreativeWork or Event about this Thing.", "items": { "anyOf": [ { "$ref": "CreativeWork.schema.json" }, { "$ref": "Event.schema.json" } ] }, "type": "array" }, "url": { "description": "URL of the item.", "format": "uri", "type": "string" } }, "title": "Thing", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/HVACBusiness.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HVACBusiness", "$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 business that provide Heating, Ventilation and Air Conditioning services.", "format": "http://schema.org/HVACBusiness", "title": "HVACBusiness", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/ProductModel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:ProductModel", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Product", "description": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online." } ], "description": "A datasheet or vendor specification of a product (in the sense of a prototypical description).", "properties": { "isVariantOf": { "description": "Indicates the kind of product that this is a variant of. In the case of [[ProductModel]], this is a pointer (from a ProductModel) to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive. In the case of a [[ProductGroup]], the group description also serves as a template, representing a set of Products that vary on explicitly defined, specific dimensions only (so it defines both a set of variants, as well as which values distinguish amongst those variants). When used with [[ProductGroup]], this property can apply to any [[Product]] included in the group.", "oneOf": [ { "anyOf": [ { "$ref": "schema:ProductGroup" }, { "$ref": "schema:ProductModel" } ] }, { "items": { "anyOf": [ { "$ref": "schema:ProductGroup" }, { "$ref": "schema:ProductModel" } ] }, "type": "array" } ] }, "predecessorOf": { "description": "A pointer from a previous, often discontinued variant of the product to its newer variant.", "oneOf": [ { "$ref": "schema:ProductModel" }, { "items": { "$ref": "schema:ProductModel" }, "type": "array" } ] }, "successorOf": { "description": "A pointer from a newer variant of a product to its previous, often discontinued predecessor.", "oneOf": [ { "$ref": "schema:ProductModel" }, { "items": { "$ref": "schema:ProductModel" }, "type": "array" } ] } }, "title": "ProductModel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Book.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Book", "$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 book.", "properties": { "abridged": { "description": "Indicates whether the book is an abridged edition.", "type": "boolean" }, "bookEdition": { "description": "The edition of the book.", "type": "string" }, "bookFormat": { "$ref": "schema:BookFormatType", "description": "The format of the book." }, "illustrator": { "$ref": "schema: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
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/HowToSection.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowToSection", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." }, { "$ref": "ItemList.schema.json", "description": "A list of items of any sort\u2014for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting." }, { "$ref": "ListItem.schema.json", "description": "An list item, e.g. a step in a checklist or how-to description." } ], "description": "A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe).", "format": "http://schema.org/HowToSection", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "HowToSection" }, "steps": { "description": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).", "items": { "anyOf": [ { "type": "string" }, { "$ref": "CreativeWork.schema.json" }, { "$ref": "ItemList.schema.json" } ] }, "type": "array" } }, "required": [ "@type" ], "title": "HowToSection", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/QuantitativeValue.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/QuantitativeValue", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "StructuredValue.schema.json", "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing." } ], "description": "A point value or interval for product characteristics and other purposes.", "format": "http://schema.org/QuantitativeValue", "properties": { "additionalProperty": { "description": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.", "items": { "$ref": "PropertyValue.schema.json" }, "type": "array" }, "maxValue": { "description": "The upper value of some characteristic or property.", "type": "number" }, "minValue": { "description": "The lower value of some characteristic or property.", "type": "number" }, "unitCode": { "anyOf": [ { "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": "QuantitativeValue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/EmploymentAgency.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:EmploymentAgency", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema: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 employment agency.", "title": "EmploymentAgency", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/TrainReservation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TrainReservation", "$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 train travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use Offer.", "format": "http://schema.org/TrainReservation", "title": "TrainReservation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c
2020-05-13T21:31:46
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": "Thing.schema.json", "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": "Thing.schema.json", "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.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "aggregateRating": { "$ref": "AggregateRating.schema.json", "description": "The overall rating, based on a collection of reviews or ratings, of the item." }, "attendee": { "description": "A person or organization attending the event.", "items": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "attendees": { "description": "A person attending the event.", "items": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "audience": { "$ref": "Audience.schema.json", "description": "An intended audience, i.e. a group for whom something was created." }, "composer": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ], "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.", "items": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "director": { "$ref": "Person.schema.json", "description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip." }, "doorTime": { "anyOf": [ { "format": "time", "type": "string" }, { "format": "date-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-time", "type": "string" }, { "format": "date", "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.", "items": { "$ref": "EventStatusType.schema.json" }, "type": "array" }, "funder": { "description": "A person or organization that supports (sponsors) something through some kind of financial contribution.", "items": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "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." }, "isAccessibleForFree": { "description": "A flag to signal that the item, event, or place is accessible for free.", "items": { "type": "boolean" }, "type": "array" }, "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." }, "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.", "items": { "anyOf": [ { "$ref": "Demand.schema.json" }, { "$ref": "Offer.schema.json" } ] }, "type": "array" }, "organizer": { "description": "An organizer of an Event.", "items": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "performer": { "description": "A performer at the event\u2014for example, a presenter, musician, musical group or actor.", "items": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "performers": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ], "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.", "items": { "format": "date", "type": "string" }, "type": "array" }, "recordedIn": { "$ref": "CreativeWork.schema.json", "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.", "items": { "$ref": "Review.schema.json" }, "type": "array" }, "sponsor": { "description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.", "items": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "startDate": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "date", "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.", "items": { "$ref": "Event.schema.json" }, "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.", "items": { "$ref": "Event.schema.json" }, "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.", "items": { "$ref": "Event.schema.json" }, "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.", "items": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "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).", "items": { "$ref": "CreativeWork.schema.json" }, "type": "array" }, "workPerformed": { "description": "A work performed in some event, for example a play performed in a TheaterEvent.", "items": { "$ref": "CreativeWork.schema.json" }, "type": "array" } }, "title": "Event", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c
2020-05-13T21:31:46
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": "Person.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" } ] }, "type": "array" } }, "title": "CommunicateAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Mosque.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Mosque", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/PlaceOfWorship", "description": "Place of worship, such as a church, synagogue, or mosque." } ], "description": "A mosque.", "format": "http://schema.org/Mosque", "title": "Mosque", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/GasStation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GasStation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/AutomotiveBusiness", "description": "Car repair, sales, or parts." } ], "description": "A gas station.", "format": "http://schema.org/GasStation", "title": "GasStation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/SuspendAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SuspendAction", "$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 momentarily pausing a device or application (e.g. pause music playback or pause a timer).", "format": "http://schema.org/SuspendAction", "title": "SuspendAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/PrependAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:PrependAction", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:InsertAction", "description": "The act of adding at a specific location in an ordered collection." } ], "description": "The act of inserting at the beginning if an ordered collection.", "title": "PrependAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/DiscoverAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DiscoverAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/FindAction", "description": "The act of finding an object.\n\nRelated actions:\n\n\nSearchAction: FindAction is generally lead by a SearchAction, but not necessarily.\n\n" } ], "description": "The act of discovering/finding an object.", "format": "http://schema.org/DiscoverAction", "title": "DiscoverAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
d93f16a26bf98d23eb806d03ccce08d7cf15b99a
2020-05-20T22:06:03
schemas/FlightReservation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/FlightReservation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Reservation.schema.json", "description": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use Offer." } ], "description": "A reservation for air travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use Offer.", "format": "http://schema.org/FlightReservation", "properties": { "boardingGroup": { "description": "The airline-specific indicator of boarding order / preference.", "type": "string" }, "passengerPriorityStatus": { "anyOf": [ { "type": "string" }, { "$ref": "QualitativeValue.schema.json" } ], "description": "The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority)." }, "passengerSequenceNumber": { "description": "The passenger's sequence number as assigned by the airline.", "type": "string" }, "securityScreening": { "description": "The type of security screening the passenger is subject to.", "type": "string" } }, "title": "FlightReservation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/FMRadioChannel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/FMRadioChannel", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/RadioChannel", "description": "A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup." } ], "description": "A radio channel that uses FM.", "title": "FMRadioChannel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/LeaveAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:LeaveAction", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:InteractAction", "description": "The act of interacting with another person or organization." } ], "description": "An agent leaves an event / group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[JoinAction]]: The antonym of LeaveAction.\\n* [[UnRegisterAction]]: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.", "properties": { "event": { "description": "Upcoming or past event associated with this place, organization, or action.", "oneOf": [ { "$ref": "schema:Event" }, { "items": { "$ref": "schema:Event" }, "type": "array" } ] } }, "title": "LeaveAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/Mountain.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Mountain", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Landform.schema.json", "description": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins." } ], "description": "A mountain, like Mount Whitney or Mount Everest.", "format": "http://schema.org/Mountain", "title": "Mountain", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/AdministrativeArea.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AdministrativeArea", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Place", "description": "Entities that have a somewhat fixed, physical extension." } ], "description": "A geographical region, typically under the jurisdiction of a particular government.", "title": "AdministrativeArea", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Painting.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Painting", "$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 painting.", "format": "http://schema.org/Painting", "title": "Painting", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
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.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "title": "SearchAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/PublicationIssue.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PublicationIssue", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A part of a successively published publication such as a periodical or publication volume, often numbered, usually containing a grouping of works such as articles.\n\nSee also blog post.", "format": "http://schema.org/PublicationIssue", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "PublicationIssue" }, "issueNumber": { "description": "Identifies the issue of publication; for example, \"iii\" or \"2\".", "items": { "anyOf": [ { "type": "integer" }, { "type": "string" } ] }, "type": "array" }, "pageEnd": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The page on which the work ends; for example \"138\" or \"xvi\"." }, "pageStart": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The page on which the work starts; for example \"135\" or \"xiii\"." }, "pagination": { "description": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".", "items": { "type": "string" }, "type": "array" } }, "required": [ "@type" ], "title": "PublicationIssue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/CreativeWork.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CreativeWork", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Thing", "description": "The most generic type of item." } ], "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.", "properties": { "about": { "$ref": "http://schema.org/Thing", "description": "The subject matter of the content." }, "accessMode": { "description": "The human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Expected values include: auditory, tactile, textual, visual, colorDependent, chartOnVisual, chemOnVisual, diagramOnVisual, mathOnVisual, musicOnVisual, textOnVisual.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "accessModeSufficient": { "description": "A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Expected values include: auditory, tactile, textual, visual.", "oneOf": [ { "$ref": "http://schema.org/ItemList" }, { "items": { "$ref": "http://schema.org/ItemList" }, "type": "array" } ] }, "accessibilityAPI": { "description": "Indicates that the resource is compatible with the referenced accessibility API (WebSchemas wiki lists possible values).", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "accessibilityControl": { "description": "Identifies input methods that are sufficient to fully control the described resource (WebSchemas wiki lists possible values).", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "accessibilityFeature": { "description": "Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility (WebSchemas wiki lists possible values).", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "accessibilityHazard": { "description": "A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3 (WebSchemas wiki lists possible values).", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "accessibilitySummary": { "description": "A human-readable summary of specific accessibility features or deficiencies, consistent with the other accessibility metadata but expressing subtleties such as \"short descriptions are present but long descriptions will be needed for non-visual users\" or \"short descriptions are present and no long descriptions are needed.\"", "type": "string" }, "accountablePerson": { "$ref": "http://schema.org/Person", "description": "Specifies the Person that is legally accountable for the CreativeWork." }, "aggregateRating": { "$ref": "http://schema.org/AggregateRating", "description": "The overall rating, based on a collection of reviews or ratings, of the item." }, "alternativeHeadline": { "description": "A secondary title of the CreativeWork.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "associatedMedia": { "$ref": "http://schema.org/MediaObject", "description": "A media object that encodes this CreativeWork. This property is a synonym for encoding." }, "audience": { "$ref": "http://schema.org/Audience", "description": "An intended audience, i.e. a group for whom something was created." }, "audio": { "description": "An embedded audio object.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/AudioObject" }, { "$ref": "http://schema.org/Clip" }, { "$ref": "http://schema.org/MusicRecording" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/AudioObject" }, { "$ref": "http://schema.org/Clip" }, { "$ref": "http://schema.org/MusicRecording" } ] }, "type": "array" } ] }, "author": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably." }, "award": { "description": "An award won by or for this item.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "awards": { "description": "Awards won by or for this item.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "character": { "description": "Fictional person connected with a creative work.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "citation": { "description": "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/CreativeWork" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/CreativeWork" } ] }, "type": "array" } ] }, "comment": { "description": "Comments, typically from users.", "oneOf": [ { "$ref": "http://schema.org/Comment" }, { "items": { "$ref": "http://schema.org/Comment" }, "type": "array" } ] }, "commentCount": { "description": "The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.", "type": "integer" }, "contentLocation": { "$ref": "http://schema.org/Place", "description": "The location depicted or described in the content. For example, the location in a photograph or painting." }, "contentRating": { "description": "Official rating of a piece of content\u2014for example,'MPAA PG-13'.", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Rating" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Rating" } ] }, "type": "array" } ] }, "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" } ] }, "copyrightHolder": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "The party holding the legal copyright to the CreativeWork." }, "copyrightYear": { "description": "The year during which the claimed copyright for the CreativeWork was first asserted.", "type": "number" }, "creator": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "The creator/author of this CreativeWork. This is the same as the Author property for CreativeWork." }, "dateCreated": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date on which the CreativeWork was created or the item was added to a DataFeed." }, "dateModified": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date on which the CreativeWork was most recently modified or when the item's entry was modified within a DataFeed." }, "datePublished": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "Date of first broadcast/publication." }, "discussionUrl": { "description": "A link to the page containing the comments of the CreativeWork.", "oneOf": [ { "format": "uri", "type": "string" }, { "items": { "format": "uri", "type": "string" }, "type": "array" } ] }, "editor": { "$ref": "http://schema.org/Person", "description": "Specifies the Person who edited the CreativeWork." }, "educationalAlignment": { "description": "An alignment to an established educational framework.\n\nThis property should not be used where the nature of the alignment can be described using a simple property, for example to express that a resource teaches or assesses a competency.", "oneOf": [ { "$ref": "http://schema.org/AlignmentObject" }, { "items": { "$ref": "http://schema.org/AlignmentObject" }, "type": "array" } ] }, "educationalUse": { "description": "The purpose of a work in the context of education; for example, 'assignment', 'group work'.", "type": "string" }, "encoding": { "description": "A media object that encodes this CreativeWork. This property is a synonym for associatedMedia.", "oneOf": [ { "$ref": "http://schema.org/MediaObject" }, { "items": { "$ref": "http://schema.org/MediaObject" }, "type": "array" } ] }, "encodingFormat": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "Media type typically expressed using a MIME format (see IANA site and MDN reference) e.g. application/zip for a SoftwareApplication binary, audio/mpeg for .mp3 etc.).\n\nIn cases where a CreativeWork has several media type representations, encoding can be used to indicate each MediaObject alongside particular encodingFormat information.\n\nUnregistered or niche encoding and file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia/Wikidata entry." }, "encodings": { "description": "A media object that encodes this CreativeWork.", "oneOf": [ { "$ref": "http://schema.org/MediaObject" }, { "items": { "$ref": "http://schema.org/MediaObject" }, "type": "array" } ] }, "exampleOfWork": { "description": "A creative work that this work is an example/instance/realization/derivation of.", "oneOf": [ { "$ref": "http://schema.org/CreativeWork" }, { "items": { "$ref": "http://schema.org/CreativeWork" }, "type": "array" } ] }, "expires": { "description": "Date the content expires and is no longer useful or available. For example a VideoObject or NewsArticle whose availability or relevance is time-limited, or a ClaimReview fact check whose publisher wants to indicate that it may no longer be relevant (or helpful to highlight) after some date.", "format": "date", "type": "string" }, "fileFormat": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "Media type, typically MIME format (see IANA site) of the content e.g. application/zip of a SoftwareApplication binary. In cases where a CreativeWork has several media type representations, 'encoding' can be used to indicate each MediaObject alongside particular fileFormat information. Unregistered or niche file formats can be indicated instead via the most appropriate URL, e.g. defining Web page or a Wikipedia entry." }, "funder": { "description": "A person or organization that supports (sponsors) something through some kind of financial contribution.", "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" } ] }, "genre": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "Genre of the creative work, broadcast channel or group." }, "hasPart": { "description": "Indicates an item or CreativeWork that is part of this item, or CreativeWork (in some sense).", "oneOf": [ { "$ref": "http://schema.org/CreativeWork" }, { "items": { "$ref": "http://schema.org/CreativeWork" }, "type": "array" } ] }, "headline": { "description": "Headline of the article.", "type": "string" }, "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." }, "interactionStatistic": { "$ref": "http://schema.org/InteractionCounter", "description": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used." }, "interactivityType": { "description": "The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.", "type": "string" }, "isAccessibleForFree": { "description": "A flag to signal that the item, event, or place is accessible for free.", "type": "boolean" }, "isBasedOn": { "description": "A resource from which this work is derived or from which it is a modification or adaption.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWork" }, { "$ref": "http://schema.org/Product" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWork" }, { "$ref": "http://schema.org/Product" } ] }, "type": "array" } ] }, "isBasedOnUrl": { "description": "A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWork" }, { "$ref": "http://schema.org/Product" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWork" }, { "$ref": "http://schema.org/Product" } ] }, "type": "array" } ] }, "isFamilyFriendly": { "description": "Indicates whether this content is family friendly.", "type": "boolean" }, "isPartOf": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWork" } ], "description": "Indicates an item or CreativeWork that this item, or CreativeWork (in some sense), is part of." }, "keywords": { "description": "Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.", "type": "string" }, "learningResourceType": { "description": "The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.", "type": "string" }, "license": { "description": "A license document that applies to this content, typically indicated by URL.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWork" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWork" } ] }, "type": "array" } ] }, "locationCreated": { "$ref": "http://schema.org/Place", "description": "The location where the CreativeWork was created, which may not be the same as the location depicted in the CreativeWork." }, "mainEntity": { "description": "Indicates the primary entity described in some page or other CreativeWork.", "oneOf": [ { "$ref": "http://schema.org/Thing" }, { "items": { "$ref": "http://schema.org/Thing" }, "type": "array" } ] }, "material": { "description": "A material that something is made from, e.g. leather, wool, cotton, paper.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "http://schema.org/Product" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "http://schema.org/Product" } ] }, "type": "array" } ] }, "mentions": { "description": "Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.", "oneOf": [ { "$ref": "http://schema.org/Thing" }, { "items": { "$ref": "http://schema.org/Thing" }, "type": "array" } ] }, "offers": { "description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.", "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" } ] }, "position": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The position of an item in a series or sequence of items." }, "producer": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "The person or organization who produced the work (e.g. music album, movie, tv/radio series etc.)." }, "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." }, "publication": { "description": "A publication event associated with the item.", "oneOf": [ { "$ref": "http://schema.org/PublicationEvent" }, { "items": { "$ref": "http://schema.org/PublicationEvent" }, "type": "array" } ] }, "publisher": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "The publisher of the creative work." }, "publishingPrinciples": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/CreativeWork" } ], "description": "The publishingPrinciples property indicates (typically via URL) a document describing the editorial principles of an Organization (or individual e.g. a Person writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a CreativeWork (e.g. NewsArticle) the principles are those of the party primarily responsible for the creation of the CreativeWork.\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a funder) can be expressed using schema.org terminology." }, "recordedAt": { "$ref": "http://schema.org/Event", "description": "The Event where the CreativeWork was recorded. The CreativeWork may capture all or part of the event." }, "releasedEvent": { "$ref": "http://schema.org/PublicationEvent", "description": "The place and time the release was issued, expressed as a PublicationEvent." }, "review": { "description": "A review of the item.", "oneOf": [ { "$ref": "http://schema.org/Review" }, { "items": { "$ref": "http://schema.org/Review" }, "type": "array" } ] }, "reviews": { "description": "Review of the item.", "oneOf": [ { "$ref": "http://schema.org/Review" }, { "items": { "$ref": "http://schema.org/Review" }, "type": "array" } ] }, "schemaVersion": { "description": "Indicates (by URL or string) a particular version of a schema used in some CreativeWork. For example, a document could declare a schemaVersion using an URL such as http://schema.org/version/2.0/ if precise indication of schema version was required by some application.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, "type": "array" } ] }, "sourceOrganization": { "$ref": "http://schema.org/Organization", "description": "The Organization on whose behalf the creator was working." }, "spatial": { "$ref": "http://schema.org/Place", "description": "The \"spatial\" property can be used in cases when more specific properties\n(e.g. locationCreated, spatialCoverage, contentLocation) are not known to be appropriate." }, "spatialCoverage": { "$ref": "http://schema.org/Place", "description": "The spatialCoverage of a CreativeWork indicates the place(s) which are the focus of the content. It is a subproperty of\n contentLocation intended primarily for more technical and detailed materials. For example with a Dataset, it indicates\n areas that the dataset describes: a dataset of New York weather would have spatialCoverage which was the place: the state of New York." }, "sponsor": { "description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.", "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" } ] }, "temporal": { "anyOf": [ { "format": "date-time", "type": "string" }, { "type": "string" } ], "description": "The \"temporal\" property can be used in cases where more specific properties\n(e.g. temporalCoverage, dateCreated, dateModified, datePublished) are not known to be appropriate." }, "temporalCoverage": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "The temporalCoverage of a CreativeWork indicates the period that the content applies to, i.e. that it describes, either as a DateTime or as a textual string indicating a time period in ISO 8601 time interval format. In\n the case of a Dataset it will typically indicate the relevant time period in a precise notation (e.g. for a 2011 census dataset, the year 2011 would be written \"2011/2012\"). Other forms of content e.g. ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their temporalCoverage in broader terms - textually or via well-known URL.\n Written works such as books may sometimes have precise temporal coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601 interval format format via \"1939/1945\".\n\nOpen-ended date ranges can be written with \"..\" in place of the end date. For example, \"2015-11/..\" indicates a range beginning in November 2015 and with no specified final date. This is tentative and might be updated in future when ISO 8601 is officially updated." }, "text": { "description": "The textual content of this CreativeWork.", "type": "string" }, "thumbnailUrl": { "description": "A thumbnail image relevant to the Thing.", "oneOf": [ { "format": "uri", "type": "string" }, { "items": { "format": "uri", "type": "string" }, "type": "array" } ] }, "timeRequired": { "description": "Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'PT30M', 'PT1H25M'.", "format": "https://schema.org/Duration", "type": "string" }, "translator": { "description": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.", "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" }, "version": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "The version of the CreativeWork embodied by a specified resource." }, "video": { "description": "An embedded video object.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Clip" }, { "$ref": "http://schema.org/VideoObject" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Clip" }, { "$ref": "http://schema.org/VideoObject" } ] }, "type": "array" } ] }, "workExample": { "description": "Example/instance/realization/derivation of the concept of this creative work. eg. The paperback edition, first edition, or eBook.", "oneOf": [ { "$ref": "http://schema.org/CreativeWork" }, { "items": { "$ref": "http://schema.org/CreativeWork" }, "type": "array" } ] } }, "title": "CreativeWork", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
schemas/HowToSection.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowToSection", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ListItem.schema.json", "description": "An list item, e.g. a step in a checklist or how-to description." }, { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." }, { "$ref": "ItemList.schema.json", "description": "A list of items of any sort\u2014for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting." } ], "description": "A sub-grouping of steps in the instructions for how to achieve a result (e.g. steps for making a pie crust within a pie recipe).", "format": "http://schema.org/HowToSection", "properties": { "steps": { "description": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).", "items": { "anyOf": [ { "$ref": "CreativeWork.schema.json" }, { "$ref": "ItemList.schema.json" }, { "type": "string" } ] }, "type": "array" } }, "title": "HowToSection", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/SocialEvent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SocialEvent", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Event.schema.json", "description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects." } ], "description": "Event type: Social event.", "format": "http://schema.org/SocialEvent", "title": "SocialEvent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/RadioChannel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:RadioChannel", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:BroadcastChannel", "description": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup." } ], "description": "A unique instance of a radio BroadcastService on a CableOrSatelliteService lineup.", "title": "RadioChannel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/HighSchool.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HighSchool", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "EducationalOrganization.schema.json", "description": "An educational organization." } ], "description": "A high school.", "format": "http://schema.org/HighSchool", "title": "HighSchool", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
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": "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: Profile page.", "format": "http://schema.org/ProfilePage", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ProfilePage" } }, "required": [ "@type" ], "title": "ProfilePage", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/HairSalon.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HairSalon", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "HealthAndBeautyBusiness.schema.json", "description": "Health and beauty." } ], "description": "A hair salon.", "format": "http://schema.org/HairSalon", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "HairSalon" } }, "required": [ "@type" ], "title": "HairSalon", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/PerformAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PerformAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/PlayAction", "description": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\n\nRelated actions:\n\n\nListenAction: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\nWatchAction: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.\n\n" } ], "description": "The act of participating in performance arts.", "properties": { "entertainmentBusiness": { "description": "A sub property of location. The entertainment business where the action occurred.", "oneOf": [ { "$ref": "http://schema.org/EntertainmentBusiness" }, { "items": { "$ref": "http://schema.org/EntertainmentBusiness" }, "type": "array" } ] } }, "title": "PerformAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/ApplyAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ApplyAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "OrganizeAction.schema.json", "description": "The act of manipulating/administering/supervising/controlling one or more objects." } ], "description": "The act of registering to an organization/service without the guarantee to receive it.\n\nRelated actions:\n\n\nRegisterAction: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted.\n\n", "format": "http://schema.org/ApplyAction", "title": "ApplyAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/FinancialProduct.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/FinancialProduct", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Service", "description": "A service provided by an organization, e.g. delivery service, print services, etc." } ], "description": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.", "properties": { "annualPercentageRate": { "anyOf": [ { "type": "number" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction." }, "feesAndCommissionsSpecification": { "description": "Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, "type": "array" } ] }, "interestRate": { "anyOf": [ { "type": "number" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate." } }, "title": "FinancialProduct", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Locksmith.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Locksmith", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "HomeAndConstructionBusiness.schema.json", "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 locksmith.", "format": "http://schema.org/Locksmith", "title": "Locksmith", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/DefinedTerm.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:DefinedTerm", "$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 word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term.", "properties": { "inDefinedTermSet": { "description": "A [[DefinedTermSet]] that contains this term.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "schema:DefinedTermSet" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "schema:DefinedTermSet" } ] }, "type": "array" } ] }, "termCode": { "description": "A code that identifies this [[DefinedTerm]] within a [[DefinedTermSet]]", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "title": "DefinedTerm", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Chapter.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Chapter", "$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": "One of the sections into which a book is divided. A chapter usually has a section number or a name.", "properties": { "pageEnd": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The page on which the work ends; for example \"138\" or \"xvi\"." }, "pageStart": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The page on which the work starts; for example \"135\" or \"xiii\"." }, "pagination": { "description": "Any description of pages that is not separated into pageStart and pageEnd; for example, \"1-6, 9, 55\" or \"10-12, 46-49\".", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "title": "Chapter", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/WholesaleStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/WholesaleStore", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Store.schema.json", "description": "A retail good store." } ], "description": "A wholesale store.", "format": "http://schema.org/WholesaleStore", "title": "WholesaleStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
a130ffcce9e85373dea613894f00d76d0dfaa9e1
2020-05-23T02:39:19
schemas/VisualArtwork.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/VisualArtwork", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CreativeWork", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A work of art that is primarily visual in character.", "properties": { "artEdition": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\")." }, "artMedium": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)" }, "artform": { "description": "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, "type": "array" } ] }, "artworkSurface": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc." }, "depth": { "anyOf": [ { "$comment": "https://schema.org/Distance", "type": "string" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The depth of the item." }, "height": { "anyOf": [ { "$comment": "https://schema.org/Distance", "type": "string" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The height of the item." }, "surface": { "description": "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, "type": "array" } ] }, "width": { "anyOf": [ { "$comment": "https://schema.org/Distance", "type": "string" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The width of the item." } }, "title": "VisualArtwork", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/ExerciseAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ExerciseAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "PlayAction.schema.json", "description": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\n\nRelated actions:\n\n\nListenAction: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\nWatchAction: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.\n\n" } ], "description": "The act of participating in exertive activity for the purposes of improving health and fitness.", "format": "http://schema.org/ExerciseAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ExerciseAction" }, "course": { "description": "A sub property of location. The course where this action was taken.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "distance": { "description": "The distance travelled, e.g. exercising or travelling.", "items": { "format": "https://schema.org/Distance", "type": "string" }, "type": "array" }, "exerciseCourse": { "description": "A sub property of location. The course where this action was taken.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "fromLocation": { "description": "A sub property of location. The original location of the object or the agent before the action.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "opponent": { "description": "A sub property of participant. The opponent on this action.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "sportsActivityLocation": { "description": "A sub property of location. The sports activity location where this action occurred.", "items": { "$ref": "SportsActivityLocation.schema.json" }, "type": "array" }, "sportsEvent": { "description": "A sub property of location. The sports event where this action occurred.", "items": { "$ref": "SportsEvent.schema.json" }, "type": "array" }, "sportsTeam": { "description": "A sub property of participant. The sports team that participated on this action.", "items": { "$ref": "SportsTeam.schema.json" }, "type": "array" }, "toLocation": { "description": "A sub property of location. The final location of the object or the agent after the action.", "items": { "$ref": "Place.schema.json" }, "type": "array" } }, "required": [ "@type" ], "title": "ExerciseAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/ApplyAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ApplyAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "OrganizeAction.schema.json", "description": "The act of manipulating/administering/supervising/controlling one or more objects." } ], "description": "The act of registering to an organization/service without the guarantee to receive it.\n\nRelated actions:\n\n\nRegisterAction: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted.\n\n", "format": "http://schema.org/ApplyAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ApplyAction" } }, "required": [ "@type" ], "title": "ApplyAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/AutoRepair.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AutoRepair", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "AutomotiveBusiness.schema.json", "description": "Car repair, sales, or parts." } ], "description": "Car repair business.", "format": "http://schema.org/AutoRepair", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "AutoRepair" } }, "required": [ "@type" ], "title": "AutoRepair", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/ConfirmAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:ConfirmAction", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:InformAction", "description": "The act of notifying someone of information pertinent to them, with no expectation of a response." } ], "description": "The act of notifying someone that a future event/action is going to happen as expected.\\n\\nRelated actions:\\n\\n* [[CancelAction]]: The antonym of ConfirmAction.", "title": "ConfirmAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/RadioClip.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:RadioClip", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Clip", "description": "A short TV or radio program or a segment/part of a program." } ], "description": "A short radio program or a segment/part of a radio program.", "title": "RadioClip", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/HowToStep.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowToStep", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." }, { "$ref": "ItemList.schema.json", "description": "A list of items of any sort\u2014for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting." }, { "$ref": "ListItem.schema.json", "description": "An list item, e.g. a step in a checklist or how-to description." } ], "description": "A step in the instructions for how to achieve a result. It is an ordered list with HowToDirection and/or HowToTip items.", "format": "http://schema.org/HowToStep", "title": "HowToStep", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/MotorcycleRepair.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MotorcycleRepair", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "AutomotiveBusiness.schema.json", "description": "Car repair, sales, or parts." } ], "description": "A motorcycle repair shop.", "format": "http://schema.org/MotorcycleRepair", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "MotorcycleRepair" } }, "required": [ "@type" ], "title": "MotorcycleRepair", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
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": { "anyOf": [ { "$ref": "Enumeration.schema.json" }, { "$ref": "PropertyValue.schema.json" }, { "$ref": "QualitativeValue.schema.json" }, { "$ref": "QuantitativeValue.schema.json" }, { "$ref": "StructuredValue.schema.json" } ] }, "type": "array" } }, "title": "QualitativeValue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/UserCheckins.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/UserCheckins", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/UserInteraction", "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment." } ], "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment.", "title": "UserCheckins", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Festival.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Festival", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Event", "description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects." } ], "description": "Event type: Festival.", "title": "Festival", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Church.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Church", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "PlaceOfWorship.schema.json", "description": "Place of worship, such as a church, synagogue, or mosque." } ], "description": "A church.", "format": "http://schema.org/Church", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Church" } }, "required": [ "@type" ], "title": "Church", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/VideoGameSeries.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/VideoGameSeries", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CreativeWorkSeries", "description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike ItemList which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\n\nSpecific subtypes are available for describing TVSeries, RadioSeries, MovieSeries, BookSeries, Periodical and VideoGameSeries. In each case, the hasPart / isPartOf properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\n\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate." } ], "description": "A video game series.", "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" } ] }, "characterAttribute": { "description": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).", "oneOf": [ { "$ref": "http://schema.org/Thing" }, { "items": { "$ref": "http://schema.org/Thing" }, "type": "array" } ] }, "cheatCode": { "description": "Cheat codes to the game.", "oneOf": [ { "$ref": "http://schema.org/CreativeWork" }, { "items": { "$ref": "http://schema.org/CreativeWork" }, "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" } ] }, "gameItem": { "description": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.", "oneOf": [ { "$ref": "http://schema.org/Thing" }, { "items": { "$ref": "http://schema.org/Thing" }, "type": "array" } ] }, "gameLocation": { "description": "Real or fictional location of the game (or part of game).", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/Place" }, { "$ref": "http://schema.org/PostalAddress" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/Place" }, { "$ref": "http://schema.org/PostalAddress" } ] }, "type": "array" } ] }, "gamePlatform": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "http://schema.org/Thing" } ], "description": "The electronic systems used to play video games." }, "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" }, "numberOfPlayers": { "description": "Indicate how many people can play this game (minimum, maximum, or range).", "oneOf": [ { "$ref": "http://schema.org/QuantitativeValue" }, { "items": { "$ref": "http://schema.org/QuantitativeValue" }, "type": "array" } ] }, "numberOfSeasons": { "description": "The number of seasons in this series.", "type": "integer" }, "playMode": { "description": "Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.", "oneOf": [ { "$ref": "http://schema.org/GamePlayMode" }, { "items": { "$ref": "http://schema.org/GamePlayMode" }, "type": "array" } ] }, "productionCompany": { "$ref": "http://schema.org/Organization", "description": "The production company or studio responsible for the item e.g. series, video game, episode etc." }, "quest": { "$ref": "http://schema.org/Thing", "description": "The task that a player-controlled character, or group of characters may complete in order to gain a reward." }, "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": "VideoGameSeries", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/City.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/City", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "AdministrativeArea.schema.json", "description": "A geographical region, typically under the jurisdiction of a particular government." } ], "description": "A city or town.", "format": "http://schema.org/City", "title": "City", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/LiveBlogPosting.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/LiveBlogPosting", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "BlogPosting.schema.json", "description": "A blog post." } ], "description": "A blog post intended to provide a rolling textual coverage of an ongoing event through continuous updates.", "format": "http://schema.org/LiveBlogPosting", "properties": { "coverageEndTime": { "description": "The time when the live blog will stop covering the Event. Note that coverage may continue after the Event concludes.", "format": "http://schema.org/DateTime" }, "coverageStartTime": { "description": "The time when the live blog will begin covering the Event. Note that coverage may begin before the Event's start time. The LiveBlogPosting may also be created before coverage begins.", "format": "http://schema.org/DateTime" }, "liveBlogUpdate": { "description": "An update to the LiveBlog.", "items": { "$ref": "BlogPosting.schema.json" }, "type": "array" } }, "title": "LiveBlogPosting", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/TelevisionChannel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TelevisionChannel", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "BroadcastChannel.schema.json", "description": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup." } ], "description": "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.", "format": "http://schema.org/TelevisionChannel", "title": "TelevisionChannel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/WebPage.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/WebPage", "$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 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.", "format": "http://schema.org/WebPage", "properties": { "breadcrumb": { "description": "A set of links that can help a user understand and navigate a website hierarchy.", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "BreadcrumbList.schema.json" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "BreadcrumbList.schema.json" } ] }, "type": "array" } ] }, "lastReviewed": { "description": "Date on which the content on this web page was last reviewed for accuracy and/or completeness.", "format": "date", "type": "string" }, "mainContentOfPage": { "$ref": "WebPageElement.schema.json", "description": "Indicates if this web page element is the main subject of the page." }, "primaryImageOfPage": { "$ref": "ImageObject.schema.json", "description": "Indicates the main image on the page." }, "relatedLink": { "description": "A link related to this web page, for example to other related web pages.", "oneOf": [ { "format": "uri", "type": "string" }, { "items": { "format": "uri", "type": "string" }, "type": "array" } ] }, "reviewedBy": { "description": "People or organizations that have reviewed the content on this web page for accuracy and/or completeness.", "oneOf": [ { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, { "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" } ] }, "significantLink": { "description": "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.", "oneOf": [ { "format": "uri", "type": "string" }, { "items": { "format": "uri", "type": "string" }, "type": "array" } ] }, "significantLinks": { "description": "The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.", "format": "uri", "type": "string" }, "speakable": { "description": "Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.\n\nThe speakable property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:\n\n1.) id-value URL references - uses id-value of an element in the page being annotated. The simplest use of speakable has (potentially relative) URL values, referencing identified sections of the document concerned.\n\n2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the cssSelector property.\n\n3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the xpath property.\n\nFor more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For this\nwe define a supporting type, SpeakableSpecification which is defined to be a possible value of the speakable property.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "SpeakableSpecification.schema.json" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "SpeakableSpecification.schema.json" } ] }, "type": "array" } ] }, "specialty": { "description": "One of the domain specialities to which this web page's content applies.", "oneOf": [ { "$ref": "Specialty.schema.json" }, { "items": { "$ref": "Specialty.schema.json" }, "type": "array" } ] } }, "title": "WebPage", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/AchieveAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AchieveAction", "$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 accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process.", "format": "http://schema.org/AchieveAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "AchieveAction" } }, "required": [ "@type" ], "title": "AchieveAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/TennisComplex.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:TennisComplex", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:SportsActivityLocation", "description": "A sports location, such as a playing field." } ], "description": "A tennis complex.", "title": "TennisComplex", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/AmusementPark.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:AmusementPark", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:EntertainmentBusiness", "description": "A business providing entertainment." } ], "description": "An amusement park.", "title": "AmusementPark", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Aquarium.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Aquarium", "$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": "Aquarium.", "format": "http://schema.org/Aquarium", "title": "Aquarium", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/MobileApplication.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MobileApplication", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "SoftwareApplication.schema.json", "description": "A software application." } ], "description": "A software application designed specifically to work well on a mobile device such as a telephone.", "format": "http://schema.org/MobileApplication", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "MobileApplication" }, "carrierRequirements": { "description": "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).", "type": "string" } }, "required": [ "@type" ], "title": "MobileApplication", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/SellAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SellAction", "$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 taking money from a buyer in exchange for goods or services rendered. An agent sells an object, product, or service to a buyer for a price. Reciprocal of BuyAction.", "format": "http://schema.org/SellAction", "properties": { "buyer": { "description": "A sub property of participant. The participant/person/organization that bought the object.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "warrantyPromise": { "$ref": "WarrantyPromise.schema.json", "description": "The warranty promise(s) included in the offer." } }, "title": "SellAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/MapCategoryType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MapCategoryType", "$schema": "http://json-schema.org/draft-07/schema#", "description": "An enumeration of several kinds of Map.", "format": "http://schema.org/MapCategoryType", "oneOf": [ { "const": "ParkingMap", "description": "A parking map." }, { "const": "SeatingMap", "description": "A seating map." }, { "const": "VenueMap", "description": "A venue map (e.g. for malls, auditoriums, museums, etc.)." }, { "const": "TransitMap", "description": "A transit map." } ], "title": "MapCategoryType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/APIReference.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/APIReference", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TechArticle.schema.json", "description": "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc." } ], "description": "Reference documentation for application programming interfaces (APIs).", "format": "http://schema.org/APIReference", "properties": { "assembly": { "description": "Library file name e.g., mscorlib.dll, system.web.dll.", "type": "string" }, "assemblyVersion": { "description": "Associated product/technology version. e.g., .NET Framework 4.5.", "type": "string" }, "executableLibraryName": { "description": "Library file name e.g., mscorlib.dll, system.web.dll.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "programmingModel": { "description": "Indicates whether API is managed or unmanaged.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "targetPlatform": { "description": "Type of app development: phone, Metro style, desktop, XBox, etc.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "title": "APIReference", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/MonetaryAmount.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:MonetaryAmount", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:StructuredValue", "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing." } ], "description": "A monetary value or range. This type can be used to describe an amount of money such as $50 USD, or a range as in describing a bank account being suitable for a balance between \u00a31,000 and \u00a31,000,000 GBP, or the value of a salary, etc. It is recommended to use [[PriceSpecification]] Types to describe the price of an Offer, Invoice, etc.", "properties": { "currency": { "description": "The currency in which the monetary amount is expressed.\\n\\nUse standard formats: [ISO 4217 currency format](http://en.wikipedia.org/wiki/ISO_4217) e.g. \"USD\"; [Ticker symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for cryptocurrencies e.g. \"BTC\"; well known names for [Local Exchange Tradings Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system) (LETS) and other currency types e.g. \"Ithaca HOUR\".", "type": "string" }, "maxValue": { "description": "The upper value of some characteristic or property.", "type": "number" }, "minValue": { "description": "The lower value of some characteristic or property.", "type": "number" }, "validFrom": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date when the item becomes valid." }, "validThrough": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours." }, "value": { "anyOf": [ { "type": "boolean" }, { "type": "number" }, { "type": "string" }, { "$ref": "schema:StructuredValue" } ], "description": "The value of the quantitative value or property value node.\\n\\n* For [[QuantitativeValue]] and [[MonetaryAmount]], the recommended type for values is 'Number'.\\n* For [[PropertyValue]], it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator." } }, "title": "MonetaryAmount", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
dcbb428317ce07ab8dcff50247c907f15443fb2f
2020-05-22T20:27:54
schemas/APIReference.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/APIReference", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TechArticle.schema.json", "description": "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc." } ], "description": "Reference documentation for application programming interfaces (APIs).", "format": "http://schema.org/APIReference", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "APIReference" }, "assembly": { "description": "Library file name e.g., mscorlib.dll, system.web.dll.", "type": "string" }, "assemblyVersion": { "description": "Associated product/technology version. e.g., .NET Framework 4.5.", "type": "string" }, "executableLibraryName": { "description": "Library file name e.g., mscorlib.dll, system.web.dll.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "programmingModel": { "description": "Indicates whether API is managed or unmanaged.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "targetPlatform": { "description": "Type of app development: phone, Metro style, desktop, XBox, etc.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] } }, "required": [ "@type" ], "title": "APIReference", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/GeoCoordinates.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GeoCoordinates", "$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": "The geographic coordinates of a place or event.", "format": "http://schema.org/GeoCoordinates", "properties": { "address": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/PostalAddress" } ], "description": "Physical address of the item." }, "addressCountry": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Country" } ], "description": "The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code." }, "elevation": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "The elevation of a location (WGS 84). Values may be of the form 'NUMBER UNITOFMEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters." }, "latitude": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "The latitude of a location. For example 37.42242 (WGS 84)." }, "longitude": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "The longitude of a location. For example -122.08585 (WGS 84)." }, "postalCode": { "description": "The postal code. For example, 94043.", "type": "string" } }, "title": "GeoCoordinates", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Course.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Course", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.", "format": "http://schema.org/Course", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Course" }, "courseCode": { "description": "The identifier for the Course used by the course provider (e.g. CS101 or 6.001).", "type": "string" }, "coursePrerequisites": { "description": "Requirements for taking the Course. May be completion of another Course or a textual description like \"permission of instructor\". Requirements may be a pre-requisite competency, referenced using AlignmentObject.", "items": { "anyOf": [ { "type": "string" }, { "$ref": "AlignmentObject.schema.json" }, { "$ref": "Course.schema.json" } ] }, "type": "array" }, "educationalCredentialAwarded": { "description": "A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, "type": "array" }, "hasCourseInstance": { "description": "An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.", "items": { "$ref": "CourseInstance.schema.json" }, "type": "array" } }, "required": [ "@type" ], "title": "Course", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/MarryAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MarryAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/InteractAction", "description": "The act of interacting with another person or organization." } ], "description": "The act of marrying a person.", "title": "MarryAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/MedicalSymptom.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:MedicalSymptom", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:MedicalSignOrSymptom", "description": "Any feature associated or not with a medical condition. In medicine a symptom is generally subjective while a sign is objective." } ], "description": "Any complaint sensed and expressed by the patient (therefore defined as subjective) like stomachache, lower-back pain, or fatigue.", "title": "MedicalSymptom", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
schemas/ApartmentComplex.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ApartmentComplex", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Residence.schema.json", "description": "The place where a person lives." } ], "description": "Residence type: Apartment complex.", "format": "http://schema.org/ApartmentComplex", "properties": { "petsAllowed": { "description": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.", "items": { "anyOf": [ { "type": "boolean" }, { "type": "string" } ] }, "type": "array" } }, "title": "ApartmentComplex", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c
2020-05-13T21:31:46
schemas/Game.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Game", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting.", "format": "http://schema.org/Game", "properties": { "characterAttribute": { "description": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).", "items": { "$ref": "Thing.schema.json" }, "type": "array" }, "gameItem": { "description": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.", "items": { "$ref": "Thing.schema.json" }, "type": "array" }, "gameLocation": { "description": "Real or fictional location of the game (or part of game).", "items": { "anyOf": [ { "$ref": "Place.schema.json" }, { "$ref": "PostalAddress.schema.json" }, { "format": "uri", "type": "string" } ] }, "type": "array" }, "numberOfPlayers": { "description": "Indicate how many people can play this game (minimum, maximum, or range).", "items": { "$ref": "QuantitativeValue.schema.json" }, "type": "array" }, "quest": { "$ref": "Thing.schema.json", "description": "The task that a player-controlled character, or group of characters may complete in order to gain a reward." } }, "title": "Game", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/TVEpisode.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TVEpisode", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Episode.schema.json", "description": "A media episode (e.g. TV, radio, video game) which can be part of a series or season." } ], "description": "A TV episode which can be part of a series or season.", "format": "http://schema.org/TVEpisode", "properties": { "countryOfOrigin": { "$ref": "Country.schema.json", "description": "The country of the principal offices of the production company or individual responsible for the movie or program." }, "partOfTVSeries": { "$ref": "TVSeries.schema.json", "description": "The TV series to which this episode or season belongs." } }, "title": "TVEpisode", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Service.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Service", "$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 service provided by an organization, e.g. delivery service, print services, etc.", "format": "http://schema.org/Service", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Service" }, "aggregateRating": { "$ref": "AggregateRating.schema.json", "description": "The overall rating, based on a collection of reviews or ratings, of the item." }, "areaServed": { "anyOf": [ { "type": "string" }, { "$ref": "AdministrativeArea.schema.json" }, { "$ref": "GeoShape.schema.json" }, { "$ref": "Place.schema.json" } ], "description": "The geographic area where a service or offered item is provided." }, "audience": { "$ref": "Audience.schema.json", "description": "An intended audience, i.e. a group for whom something was created." }, "availableChannel": { "description": "A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).", "items": { "$ref": "ServiceChannel.schema.json" }, "type": "array" }, "award": { "description": "An award won by or for this item.", "items": { "type": "string" }, "type": "array" }, "brand": { "anyOf": [ { "$ref": "Brand.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person." }, "broker": { "description": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.", "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" }, "category": { "description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "Thing.schema.json" } ] }, "type": "array" }, "hasOfferCatalog": { "description": "Indicates an OfferCatalog listing for this Organization, Person, or Service.", "items": { "$ref": "OfferCatalog.schema.json" }, "type": "array" }, "hoursAvailable": { "$ref": "OpeningHoursSpecification.schema.json", "description": "The hours during which this service or contact is available." }, "isRelatedTo": { "description": "A pointer to another, somehow related product (or multiple products).", "items": { "anyOf": [ { "$ref": "Product.schema.json" }, { "$ref": "Service.schema.json" } ] }, "type": "array" }, "isSimilarTo": { "description": "A pointer to another, functionally similar product (or multiple products).", "items": { "anyOf": [ { "$ref": "Product.schema.json" }, { "$ref": "Service.schema.json" } ] }, "type": "array" }, "logo": { "description": "An associated logo.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "ImageObject.schema.json" } ] }, "type": "array" }, "offers": { "description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.", "items": { "anyOf": [ { "$ref": "Demand.schema.json" }, { "$ref": "Offer.schema.json" } ] }, "type": "array" }, "produces": { "$ref": "Thing.schema.json", "description": "The tangible thing generated by the service, e.g. a passport, permit, etc." }, "provider": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ], "description": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller." }, "providerMobility": { "description": "Indicates the mobility of a provided service (e.g. 'static', 'dynamic').", "items": { "type": "string" }, "type": "array" }, "review": { "description": "A review of the item.", "items": { "$ref": "Review.schema.json" }, "type": "array" }, "serviceArea": { "anyOf": [ { "$ref": "AdministrativeArea.schema.json" }, { "$ref": "GeoShape.schema.json" }, { "$ref": "Place.schema.json" } ], "description": "The geographic area where the service is provided." }, "serviceAudience": { "$ref": "Audience.schema.json", "description": "The audience eligible for this service." }, "serviceOutput": { "$ref": "Thing.schema.json", "description": "The tangible thing generated by the service, e.g. a passport, permit, etc." }, "serviceType": { "description": "The type of service being offered, e.g. veterans' benefits, emergency relief, etc.", "type": "string" }, "slogan": { "description": "A slogan or motto associated with the item.", "items": { "type": "string" }, "type": "array" } }, "required": [ "@type" ], "title": "Service", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/OrderItem.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/OrderItem", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "An order item is a line of an order. It includes the quantity and shipping details of a bought offer.", "format": "http://schema.org/OrderItem", "properties": { "orderDelivery": { "$ref": "ParcelDelivery.schema.json", "description": "The delivery of the parcel related to this order or order item." }, "orderItemNumber": { "description": "The identifier of the order item.", "format": "http://schema.org/Text" }, "orderItemStatus": { "$ref": "OrderStatus.schema.json", "description": "The current status of the order item." }, "orderQuantity": { "description": "The number of the item ordered. If the property is not set, assume the quantity is one.", "format": "http://schema.org/Number" }, "orderedItem": { "description": "The item ordered.", "items": { "oneOf": [ { "$ref": "OrderItem.schema.json" }, { "$ref": "Service.schema.json" }, { "$ref": "Product.schema.json" } ] }, "type": "array" } }, "title": "OrderItem", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/SportsClub.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SportsClub", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/SportsActivityLocation", "description": "A sports location, such as a playing field." } ], "description": "A sports club.", "title": "SportsClub", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/ClaimReview.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ClaimReview", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Review.schema.json", "description": "A review of an item - for example, of a restaurant, movie, or store." } ], "description": "A fact-checking review of claims made (or reported) in some creative work (referenced via itemReviewed).", "format": "http://schema.org/ClaimReview", "properties": { "claimReviewed": { "description": "A short summary of the specific claims reviewed in a ClaimReview.", "items": { "type": "string" }, "type": "array" } }, "title": "ClaimReview", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/VideoGameClip.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/VideoGameClip", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Clip", "description": "A short TV or radio program or a segment/part of a program." } ], "description": "A short segment/part of a video game.", "format": "http://schema.org/VideoGameClip", "title": "VideoGameClip", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Physician.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Physician", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/MedicalOrganization", "description": "A medical organization (physical or not), such as hospital, institution or clinic." } ], "description": "A doctor's office.", "format": "http://schema.org/Physician", "title": "Physician", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Brand.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Brand", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "A brand is a name used by an organization or business person for labeling a product, product group, or similar.", "format": "http://schema.org/Brand", "properties": { "aggregateRating": { "$ref": "AggregateRating.schema.json", "description": "The overall rating, based on a collection of reviews or ratings, of the item." }, "logo": { "description": "An associated logo.", "items": { "oneOf": [ { "$ref": "ImageObject.schema.json" }, { "format": "uri", "type": "string" } ] }, "type": "array" }, "review": { "description": "A review of the item.", "items": { "$ref": "Review.schema.json" }, "type": "array" }, "slogan": { "description": "A slogan or motto associated with the item.", "format": "http://schema.org/Text" } }, "title": "Brand", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/AlignmentObject.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:AlignmentObject", "$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 intangible item that describes an alignment between a learning resource and a node in an educational framework.\n\nShould not be used where the nature of the alignment can be described using a simple property, for example to express that a resource [[teaches]] or [[assesses]] a competency.", "properties": { "alignmentType": { "description": "A category of alignment between the learning resource and the framework node. Recommended values include: 'requires', 'textComplexity', 'readingLevel', and 'educationalSubject'.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "educationalFramework": { "description": "The framework to which the resource being described is aligned.", "type": "string" }, "targetDescription": { "description": "The description of a node in an established educational framework.", "type": "string" }, "targetName": { "description": "The name of a node in an established educational framework.", "type": "string" }, "targetUrl": { "description": "The URL of a node in an established educational framework.", "format": "uri", "type": "string" } }, "title": "AlignmentObject", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/FinancialProduct.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/FinancialProduct", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Service", "description": "A service provided by an organization, e.g. delivery service, print services, etc." } ], "description": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.", "format": "http://schema.org/FinancialProduct", "properties": { "annualPercentageRate": { "anyOf": [ { "type": "number" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction." }, "feesAndCommissionsSpecification": { "description": "Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, "type": "array" } ] }, "interestRate": { "anyOf": [ { "type": "number" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate." } }, "title": "FinancialProduct", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/PetStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PetStore", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Store.schema.json", "description": "A retail good store." } ], "description": "A pet store.", "format": "http://schema.org/PetStore", "title": "PetStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Car.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Car", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/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 car is a wheeled, self-powered motor vehicle used for transportation.", "title": "Car", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/NailSalon.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/NailSalon", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/HealthAndBeautyBusiness", "description": "Health and beauty." } ], "description": "A nail salon.", "format": "http://schema.org/NailSalon", "title": "NailSalon", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/UpdateAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/UpdateAction", "$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 managing by changing/editing the state of the object.", "format": "http://schema.org/UpdateAction", "properties": { "collection": { "description": "A sub property of object. The collection target of the action.", "oneOf": [ { "$ref": "Thing.schema.json" }, { "items": { "$ref": "Thing.schema.json" }, "type": "array" } ] }, "targetCollection": { "description": "A sub property of object. The collection target of the action.", "oneOf": [ { "$ref": "Thing.schema.json" }, { "items": { "$ref": "Thing.schema.json" }, "type": "array" } ] } }, "title": "UpdateAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Winery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Winery", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:FoodEstablishment", "description": "A food-related business." } ], "description": "A winery.", "title": "Winery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
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, ...", "format": "http://schema.org/ExhibitionEvent", "title": "ExhibitionEvent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/CommentAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CommentAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CommunicateAction.schema.json", "description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation." } ], "description": "The act of generating a comment about a subject.", "format": "http://schema.org/CommentAction", "properties": { "resultComment": { "description": "A sub property of result. The Comment created or sent as a result of this action.", "oneOf": [ { "$ref": "Comment.schema.json" }, { "items": { "$ref": "Comment.schema.json" }, "type": "array" } ] } }, "title": "CommentAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/Residence.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Residence", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Place.schema.json", "description": "Entities that have a somewhat fixed, physical extension." } ], "description": "The place where a person lives.", "format": "http://schema.org/Residence", "title": "Residence", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
ccfd7867a8f0a96f421a90bfd617be8735463a02
2020-05-27T22:00:22
schemas/GamePlayMode.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GamePlayMode", "$schema": "http://json-schema.org/draft-07/schema#", "description": "Indicates whether this game is multi-player, co-op or single-player.", "oneOf": [ { "const": "CoOp", "description": "Play mode: CoOp. Co-operative games, where you play on the same team with friends." }, { "const": "MultiPlayer", "description": "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously." }, { "const": "SinglePlayer", "description": "Play mode: SinglePlayer. Which is played by a lone player." } ], "title": "GamePlayMode", "type": "string" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/Intangible.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Intangible", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Thing.schema.json", "description": "The most generic type of item." } ], "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.", "format": "http://schema.org/Intangible", "title": "Intangible", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Conversation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Conversation", "$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": "One or more messages between organizations or people on a particular topic. Individual messages can be linked to the conversation with isPartOf or hasPart properties.", "format": "http://schema.org/Conversation", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Conversation" } }, "required": [ "@type" ], "title": "Conversation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/MotorcycleRepair.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MotorcycleRepair", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "AutomotiveBusiness.schema.json", "description": "Car repair, sales, or parts." } ], "description": "A motorcycle repair shop.", "format": "http://schema.org/MotorcycleRepair", "title": "MotorcycleRepair", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/MusicStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MusicStore", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Store.schema.json", "description": "A retail good store." } ], "description": "A music store.", "format": "http://schema.org/MusicStore", "title": "MusicStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/DanceGroup.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DanceGroup", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "PerformingGroup.schema.json", "description": "A performance group, such as a band, an orchestra, or a circus." } ], "description": "A dance group\u2014for example, the Alvin Ailey Dance Theater or Riverdance.", "format": "http://schema.org/DanceGroup", "title": "DanceGroup", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/ArtGallery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:ArtGallery", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:EntertainmentBusiness", "description": "A business providing entertainment." } ], "description": "An art gallery.", "title": "ArtGallery", "type": "object" }
Apache-2.0
en