repository
stringclasses
528 values
commit
stringlengths
40
40
commitDate
timestamp[s]
path
stringlengths
11
149
repoStars
int64
5
94.9k
repoLastFetched
stringclasses
528 values
content
stringlengths
48
736k
license
stringclasses
14 values
language
stringclasses
7 values
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/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": "http://schema.org/Thing", "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.", "title": "Intangible", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c
2020-05-13T21:31:46
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": "ListItem.schema.json", "description": "An list item, e.g. a step in a checklist or how-to description." }, { "$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" }, { "type": "string" }, { "$ref": "ItemList.schema.json" } ] }, "type": "array" } }, "title": "HowToSection", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/ScholarlyArticle.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ScholarlyArticle", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Article", "description": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\n\nSee also blog post." } ], "description": "A scholarly article.", "format": "http://schema.org/ScholarlyArticle", "title": "ScholarlyArticle", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/RealEstateAgent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:RealEstateAgent", "$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": "A real-estate agent.", "title": "RealEstateAgent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/JoinAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:JoinAction", "$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 joins an event/group with participants/friends at a location.\\n\\nRelated actions:\\n\\n* [[RegisterAction]]: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\\n* [[SubscribeAction]]: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\\n* [[FollowAction]]: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates.", "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": "JoinAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/WarrantyPromise.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/WarrantyPromise", "$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 structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.", "format": "http://schema.org/WarrantyPromise", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "WarrantyPromise" }, "durationOfWarranty": { "$ref": "QuantitativeValue.schema.json", "description": "The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days." }, "warrantyScope": { "$ref": "WarrantyScope.schema.json", "description": "The scope of the warranty promise." } }, "required": [ "@type" ], "title": "WarrantyPromise", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Brewery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Brewery", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/FoodEstablishment", "description": "A food-related business." } ], "description": "Brewery.", "title": "Brewery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/BroadcastService.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BroadcastService", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Service.schema.json", "description": "A service provided by an organization, e.g. delivery service, print services, etc." } ], "description": "A delivery service through which content is provided via broadcast over the air or online.", "format": "http://schema.org/BroadcastService", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "BroadcastService" }, "area": { "$ref": "Place.schema.json", "description": "The area within which users can expect to reach the broadcast service." }, "broadcastAffiliateOf": { "$ref": "Organization.schema.json", "description": "The media network(s) whose content is broadcast on this station." }, "broadcastDisplayName": { "description": "The name displayed in the channel guide. For many US affiliates, it is the network name.", "type": "string" }, "broadcastFrequency": { "anyOf": [ { "type": "string" }, { "$ref": "BroadcastFrequencySpecification.schema.json" } ], "description": "The frequency used for over-the-air broadcasts. Numeric values or simple ranges e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. \"87 FM\"." }, "broadcastTimezone": { "description": "The timezone in ISO 8601 format for which the service bases its broadcasts", "type": "string" }, "broadcaster": { "$ref": "Organization.schema.json", "description": "The organization owning or operating the broadcast service." }, "hasBroadcastChannel": { "description": "A broadcast channel of a broadcast service.", "items": { "$ref": "BroadcastChannel.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." }, "parentService": { "description": "A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.", "items": { "$ref": "BroadcastService.schema.json" }, "type": "array" }, "videoFormat": { "description": "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).", "type": "string" } }, "required": [ "@type" ], "title": "BroadcastService", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/BankOrCreditUnion.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BankOrCreditUnion", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "FinancialService.schema.json", "description": "Financial services business." } ], "description": "Bank or credit union.", "format": "http://schema.org/BankOrCreditUnion", "title": "BankOrCreditUnion", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/PlaceOfWorship.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PlaceOfWorship", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CivicStructure.schema.json", "description": "A public structure, such as a town hall or concert hall." } ], "description": "Place of worship, such as a church, synagogue, or mosque.", "format": "http://schema.org/PlaceOfWorship", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "PlaceOfWorship" } }, "required": [ "@type" ], "title": "PlaceOfWorship", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Pond.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Pond", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:BodyOfWater", "description": "A body of water, such as a sea, ocean, or lake." } ], "description": "A pond.", "title": "Pond", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Corporation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Corporation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Organization.schema.json", "description": "An organization such as a school, NGO, corporation, club, etc." } ], "description": "Organization: A business corporation.", "format": "http://schema.org/Corporation", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Corporation" }, "tickerSymbol": { "description": "The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we recommend using the controlled vocabulary of Market Identifier Codes (MIC) specified in ISO15022.", "type": "string" } }, "required": [ "@type" ], "title": "Corporation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/LoanOrCredit.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/LoanOrCredit", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/FinancialProduct", "description": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry." } ], "description": "A financial product for the loaning of an amount of money under agreed terms and charges.", "properties": { "amount": { "anyOf": [ { "type": "number" }, { "$ref": "http://schema.org/MonetaryAmount" } ], "description": "The amount of money." }, "currency": { "description": "The currency in which the monetary amount is expressed.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".", "type": "string" }, "loanTerm": { "$ref": "http://schema.org/QuantitativeValue", "description": "The duration of the loan or credit agreement." }, "requiredCollateral": { "description": "Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.)", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Thing" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Thing" } ] }, "type": "array" } ] } }, "title": "LoanOrCredit", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
schemas/Order.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Order", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.", "format": "http://schema.org/Order", "properties": { "acceptedOffer": { "description": "The offer(s) -- e.g., product, quantity and price combinations -- included in the order.", "items": { "$ref": "Offer.schema.json" }, "type": "array" }, "billingAddress": { "$ref": "PostalAddress.schema.json", "description": "The billing address for the order." }, "broker": { "description": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.", "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" }, "confirmationNumber": { "description": "A number that confirms the given order or payment has been received.", "type": "string" }, "customer": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ], "description": "Party placing the order or paying the invoice." }, "discount": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "Any discount applied (to an Order)." }, "discountCode": { "description": "Code used to redeem a discount.", "type": "string" }, "discountCurrency": { "description": "The currency of the discount.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".", "type": "string" }, "isGift": { "description": "Was the offer accepted as a gift for someone other than the buyer.", "type": "boolean" }, "merchant": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ], "description": "'merchant' is an out-dated term for 'seller'." }, "orderDate": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "Date order was placed." }, "orderDelivery": { "$ref": "ParcelDelivery.schema.json", "description": "The delivery of the parcel related to this order or order item." }, "orderNumber": { "description": "The identifier of the transaction.", "type": "string" }, "orderStatus": { "$ref": "OrderStatus.schema.json", "description": "The current status of the order." }, "orderedItem": { "description": "The item ordered.", "items": { "anyOf": [ { "$ref": "OrderItem.schema.json" }, { "$ref": "Product.schema.json" }, { "$ref": "Service.schema.json" } ] }, "type": "array" }, "partOfInvoice": { "$ref": "Invoice.schema.json", "description": "The order is being paid as part of the referenced Invoice." }, "paymentDue": { "description": "The date that payment is due.", "format": "date-time", "type": "string" }, "paymentDueDate": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date that payment is due." }, "paymentMethod": { "$ref": "PaymentMethod.schema.json", "description": "The name of the credit card or other method of payment for the order." }, "paymentMethodId": { "description": "An identifier for the method of payment used (e.g. the last 4 digits of the credit card).", "items": { "type": "string" }, "type": "array" }, "paymentUrl": { "description": "The URL for sending a payment.", "format": "uri", "type": "string" }, "seller": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ], "description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider." } }, "title": "Order", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Continent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Continent", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Landform", "description": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins." } ], "description": "One of the continents (for example, Europe or Africa).", "format": "http://schema.org/Continent", "title": "Continent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/PhotographAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PhotographAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CreateAction", "description": "The act of deliberately creating/producing/generating/building a result out of the agent." } ], "description": "The act of capturing still images of objects using a camera.", "title": "PhotographAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/AppendAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AppendAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/InsertAction", "description": "The act of adding at a specific location in an ordered collection." } ], "description": "The act of inserting at the end if an ordered collection.", "title": "AppendAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Cemetery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Cemetery", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CivicStructure.schema.json", "description": "A public structure, such as a town hall or concert hall." } ], "description": "A graveyard.", "format": "http://schema.org/Cemetery", "title": "Cemetery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/PerformanceRole.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PerformanceRole", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Role", "description": "Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n\nSee also blog post." } ], "description": "A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.", "properties": { "characterName": { "description": "The name of a character played in some acting or performing role, i.e. in a PerformanceRole.", "type": "string" } }, "title": "PerformanceRole", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/InsuranceAgency.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/InsuranceAgency", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "FinancialService.schema.json", "description": "Financial services business." } ], "description": "An Insurance agency.", "format": "http://schema.org/InsuranceAgency", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "InsuranceAgency" } }, "required": [ "@type" ], "title": "InsuranceAgency", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/HowToItem.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowToItem", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/ListItem", "description": "An list item, e.g. a step in a checklist or how-to description." } ], "description": "An item used as either a tool or supply when performing the instructions for how to to achieve a result.", "properties": { "requiredQuantity": { "anyOf": [ { "type": "number" }, { "type": "string" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The required quantity of the item(s)." } }, "title": "HowToItem", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/TheaterGroup.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TheaterGroup", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "PerformingGroup.schema.json", "description": "A performance group, such as a band, an orchestra, or a circus." } ], "description": "A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.", "format": "http://schema.org/TheaterGroup", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "TheaterGroup" } }, "required": [ "@type" ], "title": "TheaterGroup", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/MediaGallery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MediaGallery", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/CollectionPage", "description": "Web page type: Collection page." } ], "description": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia.", "title": "MediaGallery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/Recipe.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Recipe", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "HowTo.schema.json", "description": "Instructions that explain how to achieve a result by performing a sequence of steps." } ], "description": "A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via suitableForDiet. The keywords property can also be used to add more detail.", "format": "http://schema.org/Recipe", "properties": { "cookTime": { "description": "The time it takes to actually cook the dish, in ISO 8601 duration format.", "format": "https://schema.org/Duration", "type": "string" }, "cookingMethod": { "description": "The method of cooking, such as Frying, Steaming, ...", "type": "string" }, "ingredients": { "description": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.", "items": { "type": "string" }, "type": "array" }, "nutrition": { "$ref": "NutritionInformation.schema.json", "description": "Nutrition information about the recipe or menu item." }, "recipeCategory": { "description": "The category of the recipe\u2014for example, appetizer, entree, etc.", "type": "string" }, "recipeCuisine": { "description": "The cuisine of the recipe (for example, French or Ethiopian).", "type": "string" }, "recipeIngredient": { "description": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.", "items": { "type": "string" }, "type": "array" }, "recipeInstructions": { "anyOf": [ { "$ref": "CreativeWork.schema.json" }, { "type": "string" }, { "$ref": "ItemList.schema.json" } ], "description": "A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items." }, "recipeYield": { "anyOf": [ { "type": "string" }, { "$ref": "QuantitativeValue.schema.json" } ], "description": "The quantity produced by the recipe (for example, number of people served, number of servings, etc)." }, "suitableForDiet": { "description": "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.", "items": { "$ref": "RestrictedDiet.schema.json" }, "type": "array" } }, "title": "Recipe", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/GolfCourse.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:GolfCourse", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:SportsActivityLocation", "description": "A sports location, such as a playing field." } ], "description": "A golf course.", "title": "GolfCourse", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/WantAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:WantAction", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:ReactAction", "description": "The act of responding instinctively and emotionally to an object, expressing a sentiment." } ], "description": "The act of expressing a desire about the object. An agent wants an object.", "title": "WantAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/BusStation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:BusStation", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:CivicStructure", "description": "A public structure, such as a town hall or concert hall." } ], "description": "A bus station.", "title": "BusStation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/EventStatusType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/EventStatusType", "$schema": "http://json-schema.org/draft-07/schema#", "description": "EventStatusType is an enumeration type whose instances represent several states that an Event may be in.", "format": "http://schema.org/EventStatusType", "oneOf": [ { "const": "EventPostponed", "description": "The event has been postponed and no new date has been set. The event's previousStartDate should be set." }, { "const": "EventRescheduled", "description": "The event has been rescheduled. The event's previousStartDate should be set to the old date and the startDate should be set to the event's new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated)." }, { "const": "EventMovedOnline", "description": "Indicates that the event was changed to allow online participation. See <a class=\"localLink\" href=\"http://schema.org/eventAttendanceMode\">eventAttendanceMode</a> for specifics of whether it is now fully or partially online." }, { "const": "EventScheduled", "description": "The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default." }, { "const": "EventCancelled", "description": "The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled. Either startDate or previousStartDate may be used to specify the event's cancelled date(s)." } ], "title": "EventStatusType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Quantity.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Quantity", "$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": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'.", "format": "http://schema.org/Quantity", "title": "Quantity", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/WorkersUnion.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/WorkersUnion", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Organization.schema.json", "description": "An organization such as a school, NGO, corporation, club, etc." } ], "description": "A Workers Union (also known as a Labor Union, Labour Union, or Trade Union) is an organization that promotes the interests of its worker members by collectively bargaining with management, organizing, and political lobbying.", "format": "http://schema.org/WorkersUnion", "title": "WorkersUnion", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Mass.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Mass", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Quantity", "description": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'." } ], "description": "Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.", "format": "http://schema.org/Mass", "title": "Mass", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Reservation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Reservation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use Offer.", "format": "http://schema.org/Reservation", "properties": { "bookingAgent": { "description": "'bookingAgent' is an out-dated term indicating a 'broker' that serves as a booking agent.", "items": { "oneOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "bookingTime": { "description": "The date and time the reservation was booked.", "format": "http://schema.org/DateTime" }, "broker": { "description": "An entity that arranges for an exchange between a buyer and a seller. In most cases a broker never acquires or releases ownership of a product or service involved in an exchange. If it is not clear whether an entity is a broker, seller, or buyer, the latter two terms are preferred.", "items": { "oneOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "modifiedTime": { "description": "The date and time the reservation was modified.", "format": "http://schema.org/DateTime" }, "priceCurrency": { "description": "The currency of the price, or a price component when attached to PriceSpecification and its subtypes.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".", "format": "http://schema.org/Text" }, "programMembershipUsed": { "description": "Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.", "items": { "$ref": "ProgramMembership.schema.json" }, "type": "array" }, "provider": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller." }, "reservationFor": { "$ref": "Thing.schema.json", "description": "The thing -- flight, event, restaurant,etc. being reserved." }, "reservationId": { "description": "A unique identifier for the reservation.", "format": "http://schema.org/Text" }, "reservationStatus": { "$ref": "ReservationStatusType.schema.json", "description": "The current status of the reservation." }, "reservedTicket": { "description": "A ticket associated with the reservation.", "items": { "$ref": "Ticket.schema.json" }, "type": "array" }, "totalPrice": { "$ref": "PriceSpecification.schema.json", "description": "The total price for the reservation or ticket, including applicable taxes, shipping, etc.\n\nUsage guidelines:\n\n\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n" }, "underName": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "The person or organization the reservation or ticket is for." } }, "title": "Reservation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/NLNonprofitType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:NLNonprofitType", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:NonprofitType", "description": "NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be." } ], "description": "NLNonprofitType: Non-profit organization type originating from the Netherlands.", "title": "NLNonprofitType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
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": "http://schema.org/AdministrativeArea", "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
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/EmailMessage.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/EmailMessage", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Message", "description": "A single message from a sender to one or more organizations or people." } ], "description": "An email message.", "format": "http://schema.org/EmailMessage", "title": "EmailMessage", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Atlas.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Atlas", "$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 collection or bound volume of maps, charts, plates or tables, physical or in media form illustrating any subject.", "title": "Atlas", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/ListItem.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:ListItem", "$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 list item, e.g. a step in a checklist or how-to description.", "properties": { "item": { "description": "An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')\u2019.", "oneOf": [ { "$ref": "schema:Thing" }, { "items": { "$ref": "schema:Thing" }, "type": "array" } ] }, "nextItem": { "description": "A link to the ListItem that follows the current one.", "oneOf": [ { "$ref": "schema:ListItem" }, { "items": { "$ref": "schema:ListItem" }, "type": "array" } ] }, "position": { "anyOf": [ { "type": "integer" }, { "type": "string" } ], "description": "The position of an item in a series or sequence of items." }, "previousItem": { "description": "A link to the ListItem that preceeds the current one.", "oneOf": [ { "$ref": "schema:ListItem" }, { "items": { "$ref": "schema:ListItem" }, "type": "array" } ] } }, "title": "ListItem", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Distillery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Distillery", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:FoodEstablishment", "description": "A food-related business." } ], "description": "A distillery.", "title": "Distillery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
dcbb428317ce07ab8dcff50247c907f15443fb2f
2020-05-22T20:27:54
schemas/Trip.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Trip", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "A trip or journey. An itinerary of visits to one or more places.", "format": "http://schema.org/Trip", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Trip" }, "arrivalTime": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "time", "type": "string" } ], "description": "The expected arrival time." }, "departureTime": { "anyOf": [ { "format": "date-time", "type": "string" }, { "format": "time", "type": "string" } ], "description": "The expected departure time." }, "offers": { "description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.", "oneOf": [ { "anyOf": [ { "$ref": "Demand.schema.json" }, { "$ref": "Offer.schema.json" } ] }, { "items": { "anyOf": [ { "$ref": "Demand.schema.json" }, { "$ref": "Offer.schema.json" } ] }, "type": "array" } ] }, "provider": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ], "description": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller." } }, "required": [ "@type" ], "title": "Trip", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Cemetery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Cemetery", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:CivicStructure", "description": "A public structure, such as a town hall or concert hall." } ], "description": "A graveyard.", "title": "Cemetery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/InstallAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/InstallAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ConsumeAction.schema.json", "description": "The act of ingesting information/resources/food." } ], "description": "The act of installing an application.", "format": "http://schema.org/InstallAction", "title": "InstallAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/SocialMediaPosting.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SocialMediaPosting", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Article.schema.json", "description": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\n\nSee also blog post." } ], "description": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.", "format": "http://schema.org/SocialMediaPosting", "properties": { "sharedContent": { "description": "A CreativeWork such as an image, video, or audio clip shared as part of this posting.", "items": { "$ref": "CreativeWork.schema.json" }, "type": "array" } }, "title": "SocialMediaPosting", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/ActionStatusType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:ActionStatusType", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:StatusEnumeration", "description": "Lists or enumerations dealing with status types." } ], "description": "The status of an Action.", "title": "ActionStatusType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/LymphaticVessel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:LymphaticVessel", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Vessel", "description": "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body." } ], "description": "A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.", "properties": { "originatesFrom": { "$ref": "schema:Vessel", "description": "The vasculature the lymphatic structure originates, or afferents, from." }, "regionDrained": { "anyOf": [ { "$ref": "schema:AnatomicalStructure" }, { "$ref": "schema:AnatomicalSystem" } ], "description": "The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ." }, "runsTo": { "$ref": "schema:Vessel", "description": "The vasculature the lymphatic structure runs, or efferents, to." } }, "title": "LymphaticVessel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/GeoCircle.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GeoCircle", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/GeoShape", "description": "The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points." } ], "description": "A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape\n it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.\n The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.", "format": "http://schema.org/GeoCircle", "properties": { "geoMidpoint": { "description": "Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle.", "oneOf": [ { "$ref": "http://schema.org/GeoCoordinates" }, { "items": { "$ref": "http://schema.org/GeoCoordinates" }, "type": "array" } ] }, "geoRadius": { "description": "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).", "oneOf": [ { "anyOf": [ { "type": "number" }, { "format": "https://schema.org/Distance", "type": "string" }, { "type": "string" } ] }, { "items": { "anyOf": [ { "type": "number" }, { "format": "https://schema.org/Distance", "type": "string" }, { "type": "string" } ] }, "type": "array" } ] } }, "title": "GeoCircle", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
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.", "oneOf": [ { "$ref": "Language.schema.json" }, { "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.", "oneOf": [ { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, { "items": { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" } ] } }, "title": "CommunicateAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
dcbb428317ce07ab8dcff50247c907f15443fb2f
2020-05-22T20:27:54
schemas/SportsTeam.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SportsTeam", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "SportsOrganization.schema.json", "description": "Represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations." } ], "description": "Organization: Sports team.", "format": "http://schema.org/SportsTeam", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "SportsTeam" }, "athlete": { "description": "A person that acts as performing member of a sports team; a player as opposed to a coach.", "oneOf": [ { "$ref": "Person.schema.json" }, { "items": { "$ref": "Person.schema.json" }, "type": "array" } ] }, "coach": { "description": "A person that acts in a coaching role for a sports team.", "oneOf": [ { "$ref": "Person.schema.json" }, { "items": { "$ref": "Person.schema.json" }, "type": "array" } ] } }, "required": [ "@type" ], "title": "SportsTeam", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/LoseAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/LoseAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/AchieveAction", "description": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process." } ], "description": "The act of being defeated in a competitive activity.", "properties": { "winner": { "description": "A sub property of participant. The winner of the action.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] } }, "title": "LoseAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/MusicRelease.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MusicRelease", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/MusicPlaylist", "description": "A collection of music tracks in playlist form." } ], "description": "A MusicRelease is a specific release of a music album.", "format": "http://schema.org/MusicRelease", "properties": { "catalogNumber": { "description": "The catalog number for the release.", "type": "string" }, "creditedTo": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ], "description": "The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to \"Stefani Germanotta Band\", but by Lady Gaga." }, "duration": { "description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.", "format": "https://schema.org/Duration", "type": "string" }, "musicReleaseFormat": { "description": "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).", "oneOf": [ { "$ref": "http://schema.org/MusicReleaseFormatType" }, { "items": { "$ref": "http://schema.org/MusicReleaseFormatType" }, "type": "array" } ] }, "recordLabel": { "$ref": "http://schema.org/Organization", "description": "The label that issued the release." }, "releaseOf": { "$ref": "http://schema.org/MusicAlbum", "description": "The album this is a release of." } }, "title": "MusicRelease", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/SaleEvent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SaleEvent", "$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: Sales event.", "format": "http://schema.org/SaleEvent", "title": "SaleEvent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/BlogPosting.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BlogPosting", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/SocialMediaPosting", "description": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc." } ], "description": "A blog post.", "title": "BlogPosting", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/VirtualLocation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:VirtualLocation", "$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 online or virtual location for attending events. For example, one may attend an online seminar or educational event. While a virtual location may be used as the location of an event, virtual locations should not be confused with physical locations in the real world.", "title": "VirtualLocation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/GolfCourse.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GolfCourse", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "SportsActivityLocation.schema.json", "description": "A sports location, such as a playing field." } ], "description": "A golf course.", "format": "http://schema.org/GolfCourse", "title": "GolfCourse", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/WPSideBar.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:WPSideBar", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:WebPageElement", "description": "A web page element, like a table or an image." } ], "description": "A sidebar section of the page.", "title": "WPSideBar", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
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": { "@context": { "const": "https://schema.org" }, "@type": { "const": "LiveBlogPosting" }, "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.", "items": { "$ref": "BlogPosting.schema.json" }, "type": "array" } }, "required": [ "@type" ], "title": "LiveBlogPosting", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
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/PaymentStatusType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PaymentStatusType", "$schema": "http://json-schema.org/draft-07/schema#", "description": "A specific payment status. For example, PaymentDue, PaymentComplete, etc.", "oneOf": [ { "const": "PaymentAutomaticallyApplied", "description": "An automatic payment system is in place and will be used." }, { "const": "PaymentComplete", "description": "The payment has been received and processed." }, { "const": "PaymentDeclined", "description": "The payee received the payment, but it was declined for some reason." }, { "const": "PaymentDue", "description": "The payment is due, but still within an acceptable time to be received." }, { "const": "PaymentPastDue", "description": "The payment is due and considered late." } ], "title": "PaymentStatusType", "type": "string" }
Apache-2.0
en
charlestati/schema-org-json-schemas
836707371bd5157a43e93dd1653717a7f932db13
2020-05-11T23:21:31
schemas/MediaObject.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MediaObject", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's).", "format": "http://schema.org/MediaObject", "properties": { "associatedArticle": { "description": "A NewsArticle associated with the Media Object.", "items": { "$ref": "NewsArticle.schema.json" }, "type": "array" }, "bitrate": { "description": "The bitrate of the media object.", "format": "http://schema.org/Text" }, "contentSize": { "description": "File size in (mega/kilo) bytes.", "format": "http://schema.org/Text" }, "contentUrl": { "description": "Actual bytes of the media object, for example the image file or video file.", "format": "uri", "type": "string" }, "duration": { "description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.", "format": "https://schema.org/Duration", "type": "string" }, "embedUrl": { "description": "A URL pointing to a player for a specific video. In general, this is the information in the src element of an embed tag and should not be the same as the content of the loc tag.", "format": "uri", "type": "string" }, "encodesCreativeWork": { "$ref": "CreativeWork.schema.json", "description": "The CreativeWork encoded by this media object." }, "encodingFormat": { "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.", "format": "uri", "type": "string" }, "endTime": { "description": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.", "format": "http://schema.org/DateTime" }, "height": { "anyOf": [ { "format": "https://schema.org/Distance", "type": "string" }, { "$ref": "QuantitativeValue.schema.json" } ], "description": "The height of the item." }, "playerType": { "description": "Player type required\u2014for example, Flash or Silverlight.", "format": "http://schema.org/Text" }, "productionCompany": { "$ref": "Organization.schema.json", "description": "The production company or studio responsible for the item e.g. series, video game, episode etc." }, "regionsAllowed": { "$ref": "Place.schema.json", "description": "The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in ISO 3166 format." }, "requiresSubscription": { "$ref": "MediaSubscription.schema.json", "description": "Indicates if use of the media require a subscription (either paid or free). Allowed values are true or false (note that an earlier version had 'yes', 'no')." }, "startTime": { "description": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.", "format": "http://schema.org/Time" }, "uploadDate": { "description": "Date when this media object was uploaded to this site.", "format": "http://schema.org/Date" }, "width": { "anyOf": [ { "format": "https://schema.org/Distance", "type": "string" }, { "$ref": "QuantitativeValue.schema.json" } ], "description": "The width of the item." } }, "title": "MediaObject", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/SearchResultsPage.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SearchResultsPage", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "WebPage.schema.json", "description": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page." } ], "description": "Web page type: Search results page.", "format": "http://schema.org/SearchResultsPage", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "SearchResultsPage" } }, "required": [ "@type" ], "title": "SearchResultsPage", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/ReactAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ReactAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "AssessAction.schema.json", "description": "The act of forming one's opinion, reaction or sentiment." } ], "description": "The act of responding instinctively and emotionally to an object, expressing a sentiment.", "format": "http://schema.org/ReactAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ReactAction" } }, "required": [ "@type" ], "title": "ReactAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/TennisComplex.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TennisComplex", "$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 tennis complex.", "format": "http://schema.org/TennisComplex", "title": "TennisComplex", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/BlogPosting.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BlogPosting", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "SocialMediaPosting.schema.json", "description": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc." } ], "description": "A blog post.", "format": "http://schema.org/BlogPosting", "title": "BlogPosting", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/CafeOrCoffeeShop.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CafeOrCoffeeShop", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "FoodEstablishment.schema.json", "description": "A food-related business." } ], "description": "A cafe or coffee shop.", "format": "http://schema.org/CafeOrCoffeeShop", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "CafeOrCoffeeShop" } }, "required": [ "@type" ], "title": "CafeOrCoffeeShop", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Seat.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Seat", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Intangible", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "Used to describe a seat, such as a reserved seat in an event reservation.", "properties": { "seatNumber": { "description": "The location of the reserved seat (e.g., 27).", "type": "string" }, "seatRow": { "description": "The row location of the reserved seat (e.g., B).", "type": "string" }, "seatSection": { "description": "The section location of the reserved seat (e.g. Orchestra).", "type": "string" }, "seatingType": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/QualitativeValue" } ], "description": "The type/class of the seat." } }, "title": "Seat", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/IceCreamShop.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/IceCreamShop", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/FoodEstablishment", "description": "A food-related business." } ], "description": "An ice cream shop.", "format": "http://schema.org/IceCreamShop", "title": "IceCreamShop", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ScreeningEvent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ScreeningEvent", "$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": "A screening of a movie or other video.", "properties": { "videoFormat": { "description": "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).", "type": "string" }, "workPresented": { "$ref": "http://schema.org/Movie", "description": "The movie presented during this event." } }, "title": "ScreeningEvent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/AutomotiveBusiness.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AutomotiveBusiness", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/LocalBusiness", "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc." } ], "description": "Car repair, sales, or parts.", "title": "AutomotiveBusiness", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
d93f16a26bf98d23eb806d03ccce08d7cf15b99a
2020-05-20T22:06:03
schemas/TouristAttraction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TouristAttraction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Place.schema.json", "description": "Entities that have a somewhat fixed, physical extension." } ], "description": "A tourist attraction. In principle any Thing can be a TouristAttraction, from a Mountain and LandmarksOrHistoricalBuildings to a LocalBusiness. This Type can be used on its own to describe a general TouristAttraction, or be used as an additionalType to add tourist attraction properties to any other type. (See examples below)", "format": "http://schema.org/TouristAttraction", "properties": { "availableLanguage": { "description": "A language someone may use with or at the item, service or place. Please use one of the language codes from the IETF BCP 47 standard. See also inLanguage", "items": { "anyOf": [ { "type": "string" }, { "$ref": "Language.schema.json" } ] }, "type": "array" }, "touristType": { "description": "Attraction suitable for type(s) of tourist. eg. Children, visitors from a particular country, etc.", "items": { "anyOf": [ { "type": "string" }, { "$ref": "Audience.schema.json" } ] }, "type": "array" } }, "title": "TouristAttraction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Person.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Person", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Thing", "description": "The most generic type of item." } ], "description": "A person (alive, dead, undead, or fictional).", "format": "http://schema.org/Person", "properties": { "additionalName": { "description": "An additional name for a Person, can be used for a middle name.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "address": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/PostalAddress" } ], "description": "Physical address of the item." }, "affiliation": { "description": "An organization that this person is affiliated with. For example, a school/university, a club, or a team.", "oneOf": [ { "$ref": "http://schema.org/Organization" }, { "items": { "$ref": "http://schema.org/Organization" }, "type": "array" } ] }, "alumniOf": { "description": "An organization that the person is an alumni of.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/EducationalOrganization" }, { "$ref": "http://schema.org/Organization" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/EducationalOrganization" }, { "$ref": "http://schema.org/Organization" } ] }, "type": "array" } ] }, "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" } ] }, "birthDate": { "description": "Date of birth.", "format": "date", "type": "string" }, "birthPlace": { "$ref": "http://schema.org/Place", "description": "The place where the person was born." }, "brand": { "anyOf": [ { "$ref": "http://schema.org/Brand" }, { "$ref": "http://schema.org/Organization" } ], "description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person." }, "children": { "description": "A child of the person.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "colleague": { "description": "A colleague of the person.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "colleagues": { "description": "A colleague of the person.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "contactPoint": { "description": "A contact point for a person or organization.", "oneOf": [ { "$ref": "http://schema.org/ContactPoint" }, { "items": { "$ref": "http://schema.org/ContactPoint" }, "type": "array" } ] }, "contactPoints": { "description": "A contact point for a person or organization.", "oneOf": [ { "$ref": "http://schema.org/ContactPoint" }, { "items": { "$ref": "http://schema.org/ContactPoint" }, "type": "array" } ] }, "deathDate": { "description": "Date of death.", "format": "date", "type": "string" }, "deathPlace": { "$ref": "http://schema.org/Place", "description": "The place where the person died." }, "duns": { "description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.", "type": "string" }, "email": { "description": "Email address.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "familyName": { "description": "Family name. In the U.S., the last name of an Person. This can be used along with givenName instead of the name property.", "type": "string" }, "faxNumber": { "description": "The fax number.", "type": "string" }, "follows": { "description": "The most generic uni-directional social relation.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "funder": { "description": "A person or organization that supports (sponsors) something through some kind of financial contribution.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "givenName": { "description": "Given name. In the U.S., the first name of a Person. This can be used along with familyName instead of the name property.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "globalLocationNumber": { "description": "The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.", "type": "string" }, "hasOccupation": { "$ref": "http://schema.org/Occupation", "description": "The Person's occupation. For past professions, use Role for expressing dates." }, "hasOfferCatalog": { "description": "Indicates an OfferCatalog listing for this Organization, Person, or Service.", "oneOf": [ { "$ref": "http://schema.org/OfferCatalog" }, { "items": { "$ref": "http://schema.org/OfferCatalog" }, "type": "array" } ] }, "hasPOS": { "description": "Points-of-Sales operated by the organization or person.", "oneOf": [ { "$ref": "http://schema.org/Place" }, { "items": { "$ref": "http://schema.org/Place" }, "type": "array" } ] }, "height": { "anyOf": [ { "format": "https://schema.org/Distance", "type": "string" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The height of the item." }, "homeLocation": { "description": "A contact location for a person's residence.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/ContactPoint" }, { "$ref": "http://schema.org/Place" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/ContactPoint" }, { "$ref": "http://schema.org/Place" } ] }, "type": "array" } ] }, "honorificPrefix": { "description": "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "honorificSuffix": { "description": "An honorific suffix preceding a Person's name such as M.D. /PhD/MSCSW.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "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." }, "isicV4": { "description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.", "type": "string" }, "knows": { "$ref": "http://schema.org/Person", "description": "The most generic bi-directional social/work relation." }, "makesOffer": { "description": "A pointer to products or services offered by the organization or person.", "oneOf": [ { "$ref": "http://schema.org/Offer" }, { "items": { "$ref": "http://schema.org/Offer" }, "type": "array" } ] }, "memberOf": { "description": "An Organization (or ProgramMembership) to which this Person or Organization belongs.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/ProgramMembership" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/ProgramMembership" } ] }, "type": "array" } ] }, "naics": { "description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.", "type": "string" }, "nationality": { "description": "Nationality of the person.", "oneOf": [ { "$ref": "http://schema.org/Country" }, { "items": { "$ref": "http://schema.org/Country" }, "type": "array" } ] }, "netWorth": { "anyOf": [ { "$ref": "http://schema.org/MonetaryAmount" }, { "$ref": "http://schema.org/PriceSpecification" } ], "description": "The total financial value of the person as calculated by subtracting assets from liabilities." }, "owns": { "description": "Products owned by the organization or person.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/OwnershipInfo" }, { "$ref": "http://schema.org/Product" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/OwnershipInfo" }, { "$ref": "http://schema.org/Product" } ] }, "type": "array" } ] }, "parent": { "description": "A parent of this person.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "parents": { "description": "A parents of the person.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "performerIn": { "description": "Event that this person is a performer or participant in.", "oneOf": [ { "$ref": "http://schema.org/Event" }, { "items": { "$ref": "http://schema.org/Event" }, "type": "array" } ] }, "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." }, "relatedTo": { "$ref": "http://schema.org/Person", "description": "The most generic familial relation." }, "seeks": { "description": "A pointer to products or services sought by the organization or person (demand).", "oneOf": [ { "$ref": "http://schema.org/Demand" }, { "items": { "$ref": "http://schema.org/Demand" }, "type": "array" } ] }, "sibling": { "description": "A sibling of the person.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "siblings": { "description": "A sibling of the person.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "sponsor": { "description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] }, "spouse": { "$ref": "http://schema.org/Person", "description": "The person's spouse." }, "taxID": { "description": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.", "type": "string" }, "telephone": { "description": "The telephone number.", "type": "string" }, "vatID": { "description": "The Value-added Tax ID of the organization or person.", "type": "string" }, "weight": { "$ref": "http://schema.org/QuantitativeValue", "description": "The weight of the product or person." }, "workLocation": { "description": "A contact location for a person's place of work.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/ContactPoint" }, { "$ref": "http://schema.org/Place" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/ContactPoint" }, { "$ref": "http://schema.org/Place" } ] }, "type": "array" } ] }, "worksFor": { "description": "Organizations that the person works for.", "oneOf": [ { "$ref": "http://schema.org/Organization" }, { "items": { "$ref": "http://schema.org/Organization" }, "type": "array" } ] } }, "title": "Person", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Museum.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Museum", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CivicStructure.schema.json", "description": "A public structure, such as a town hall or concert hall." } ], "description": "A museum.", "format": "http://schema.org/Museum", "title": "Museum", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/MusicRelease.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MusicRelease", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "MusicPlaylist.schema.json", "description": "A collection of music tracks in playlist form." } ], "description": "A MusicRelease is a specific release of a music album.", "format": "http://schema.org/MusicRelease", "properties": { "catalogNumber": { "description": "The catalog number for the release.", "format": "http://schema.org/Text" }, "creditedTo": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to \"Stefani Germanotta Band\", but by Lady Gaga." }, "duration": { "$ref": "Duration.schema.json", "description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format." }, "musicReleaseFormat": { "description": "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).", "items": { "$ref": "MusicReleaseFormatType.schema.json" }, "type": "array" }, "recordLabel": { "$ref": "Organization.schema.json", "description": "The label that issued the release." }, "releaseOf": { "$ref": "MusicAlbum.schema.json", "description": "The album this is a release of." } }, "title": "MusicRelease", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/BookmarkAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BookmarkAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/OrganizeAction", "description": "The act of manipulating/administering/supervising/controlling one or more objects." } ], "description": "An agent bookmarks/flags/labels/tags/marks an object.", "title": "BookmarkAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/CancelAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CancelAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/PlanAction", "description": "The act of planning the execution of an event/task/action/reservation/plan to a future date." } ], "description": "The act of asserting that a future event/action is no longer going to happen.\n\nRelated actions:\n\n\nConfirmAction: The antonym of CancelAction.\n\n", "title": "CancelAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/MonetaryGrant.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:MonetaryGrant", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Grant", "description": "A grant, typically financial or otherwise quantifiable, of resources. Typically a [[funder]] sponsors some [[MonetaryAmount]] to an [[Organization]] or [[Person]],\n sometimes not necessarily via a dedicated or long-lived [[Project]], resulting in one or more outputs, or [[fundedItem]]s. For financial sponsorship, indicate the [[funder]] of a [[MonetaryGrant]]. For non-financial support, indicate [[sponsor]] of [[Grant]]s of resources (e.g. office space).\n\nGrants support activities directed towards some agreed collective goals, often but not always organized as [[Project]]s. Long-lived projects are sometimes sponsored by a variety of grants over time, but it is also common for a project to be associated with a single grant.\n\nThe amount of a [[Grant]] is represented using [[amount]] as a [[MonetaryAmount]].\n " } ], "description": "A monetary grant.", "properties": { "amount": { "anyOf": [ { "type": "number" }, { "$ref": "schema:MonetaryAmount" } ], "description": "The amount of money." }, "funder": { "description": "A person or organization that supports (sponsors) something through some kind of financial contribution.", "oneOf": [ { "anyOf": [ { "$ref": "schema:Organization" }, { "$ref": "schema:Person" } ] }, { "items": { "anyOf": [ { "$ref": "schema:Organization" }, { "$ref": "schema:Person" } ] }, "type": "array" } ] } }, "title": "MonetaryGrant", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/FoodEstablishment.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/FoodEstablishment", "$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 food-related business.", "format": "http://schema.org/FoodEstablishment", "properties": { "acceptsReservations": { "anyOf": [ { "type": "boolean" }, { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings Yes or No." }, "hasMenu": { "description": "Either the actual menu as a structured representation, as text, or a URL of the menu.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "Menu.schema.json" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "Menu.schema.json" } ] }, "type": "array" } ] }, "menu": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" }, { "$ref": "Menu.schema.json" } ], "description": "Either the actual menu as a structured representation, as text, or a URL of the menu." }, "servesCuisine": { "description": "The cuisine of the restaurant.", "type": "string" }, "starRating": { "description": "An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).", "oneOf": [ { "$ref": "Rating.schema.json" }, { "items": { "$ref": "Rating.schema.json" }, "type": "array" } ] } }, "title": "FoodEstablishment", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/BusReservation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BusReservation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Reservation", "description": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use Offer." } ], "description": "A reservation for bus 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.", "title": "BusReservation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/DepartAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DepartAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "MoveAction.schema.json", "description": "The act of an agent relocating to a place.\n\nRelated actions:\n\n\nTransferAction: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.\n\n" } ], "description": "The act of departing from a place. An agent departs from an fromLocation for a destination, optionally with participants.", "format": "http://schema.org/DepartAction", "title": "DepartAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Report.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Report", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Article", "description": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\\n\\nSee also [blog post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html)." } ], "description": "A Report generated by governmental or non-governmental organization.", "properties": { "reportNumber": { "description": "The number or other unique designator assigned to a Report by the publishing organization.", "type": "string" } }, "title": "Report", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
dcbb428317ce07ab8dcff50247c907f15443fb2f
2020-05-22T20:27:54
schemas/SendAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SendAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TransferAction.schema.json", "description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another." } ], "description": "The act of physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:\n\n\nReceiveAction: The reciprocal of SendAction.\nGiveAction: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).\n\n", "format": "http://schema.org/SendAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "SendAction" }, "deliveryMethod": { "description": "A sub property of instrument. The method of delivery.", "oneOf": [ { "$ref": "DeliveryMethod.schema.json" }, { "items": { "$ref": "DeliveryMethod.schema.json" }, "type": "array" } ] }, "recipient": { "description": "A sub property of participant. The participant who is at the receiving end of the action.", "oneOf": [ { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, { "items": { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" } ] } }, "required": [ "@type" ], "title": "SendAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/HowTo.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowTo", "$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": "Instructions that explain how to achieve a result by performing a sequence of steps.", "format": "http://schema.org/HowTo", "properties": { "estimatedCost": { "$ref": "MonetaryAmount.schema.json", "description": "The estimated cost of the supply or supplies consumed when performing instructions." }, "performTime": { "$ref": "Duration.schema.json", "description": "The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in ISO 8601 duration format." }, "prepTime": { "$ref": "Duration.schema.json", "description": "The length of time it takes to prepare the items to be used in instructions or a direction, in ISO 8601 duration format." }, "step": { "description": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.", "items": { "oneOf": [ { "$ref": "CreativeWork.schema.json" }, { "$ref": "HowToSection.schema.json" }, { "$ref": "HowToStep.schema.json" } ] }, "type": "array" }, "steps": { "description": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).", "items": { "oneOf": [ { "$ref": "CreativeWork.schema.json" }, { "$ref": "ItemList.schema.json" } ] }, "type": "array" }, "supply": { "description": "A sub-property of instrument. A supply consumed when performing instructions or a direction.", "items": { "$ref": "HowToSupply.schema.json" }, "type": "array" }, "tool": { "description": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.", "items": { "$ref": "HowToTool.schema.json" }, "type": "array" }, "totalTime": { "$ref": "Duration.schema.json", "description": "The total time required to perform instructions or a direction (including time to prepare the supplies), in ISO 8601 duration format." }, "yield": { "$ref": "QuantitativeValue.schema.json", "description": "The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles." } }, "title": "HowTo", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
a130ffcce9e85373dea613894f00d76d0dfaa9e1
2020-05-23T02:39:19
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": { "$comment": "https://schema.org/Duration", "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'.", "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
d93f16a26bf98d23eb806d03ccce08d7cf15b99a
2020-05-20T22:06:03
schemas/HowToSupply.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowToSupply", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "HowToItem.schema.json", "description": "An item used as either a tool or supply when performing the instructions for how to to achieve a result." } ], "description": "A supply consumed when performing the instructions for how to achieve a result.", "format": "http://schema.org/HowToSupply", "properties": { "estimatedCost": { "anyOf": [ { "type": "string" }, { "$ref": "MonetaryAmount.schema.json" } ], "description": "The estimated cost of the supply or supplies consumed when performing instructions." } }, "title": "HowToSupply", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
dcbb428317ce07ab8dcff50247c907f15443fb2f
2020-05-22T20:27:54
schemas/ContactPoint.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ContactPoint", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "StructuredValue.schema.json", "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing." } ], "description": "A contact point\u2014for example, a Customer Complaints department.", "format": "http://schema.org/ContactPoint", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ContactPoint" }, "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." }, "availableLanguage": { "description": "A language someone may use with or at the item, service or place. Please use one of the language codes from the IETF BCP 47 standard. See also inLanguage", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "Language.schema.json" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "Language.schema.json" } ] }, "type": "array" } ] }, "contactOption": { "description": "An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers).", "oneOf": [ { "$ref": "ContactPointOption.schema.json" }, { "items": { "$ref": "ContactPointOption.schema.json" }, "type": "array" } ] }, "contactType": { "description": "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "email": { "description": "Email address.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "faxNumber": { "description": "The fax number.", "type": "string" }, "hoursAvailable": { "$ref": "OpeningHoursSpecification.schema.json", "description": "The hours during which this service or contact is available." }, "productSupported": { "anyOf": [ { "type": "string" }, { "$ref": "Product.schema.json" } ], "description": "The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. \"iPhone\") or a general category of products or services (e.g. \"smartphones\")." }, "serviceArea": { "anyOf": [ { "$ref": "AdministrativeArea.schema.json" }, { "$ref": "GeoShape.schema.json" }, { "$ref": "Place.schema.json" } ], "description": "The geographic area where the service is provided." }, "telephone": { "description": "The telephone number.", "type": "string" } }, "required": [ "@type" ], "title": "ContactPoint", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
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": "boolean" }, { "type": "number" }, { "$ref": "StructuredValue.schema.json" }, { "type": "string" } ], "description": "The value of the quantitative value or property value node.\n\n\nFor QuantitativeValue and MonetaryAmount, the recommended type for values is 'Number'.\nFor PropertyValue, it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n" }, "valueReference": { "description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.", "items": { "anyOf": [ { "$ref": "Enumeration.schema.json" }, { "$ref": "PropertyValue.schema.json" }, { "$ref": "QualitativeValue.schema.json" }, { "$ref": "QuantitativeValue.schema.json" }, { "$ref": "StructuredValue.schema.json" } ] }, "type": "array" } }, "title": "QuantitativeValue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/AddAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AddAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "UpdateAction.schema.json", "description": "The act of managing by changing/editing the state of the object." } ], "description": "The act of editing by adding an object to a collection.", "format": "http://schema.org/AddAction", "title": "AddAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
dcbb428317ce07ab8dcff50247c907f15443fb2f
2020-05-22T20:27:54
schemas/ReturnAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ReturnAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TransferAction.schema.json", "description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another." } ], "description": "The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).", "format": "http://schema.org/ReturnAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ReturnAction" }, "recipient": { "description": "A sub property of participant. The participant who is at the receiving end of the action.", "oneOf": [ { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, { "items": { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" } ] } }, "required": [ "@type" ], "title": "ReturnAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/GovernmentService.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GovernmentService", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Service.schema.json", "description": "A service provided by an organization, e.g. delivery service, print services, etc." } ], "description": "A service provided by a government organization, e.g. food stamps, veterans benefits, etc.", "format": "http://schema.org/GovernmentService", "properties": { "serviceOperator": { "$ref": "Organization.schema.json", "description": "The operating organization, if different from the provider. This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor." } }, "title": "GovernmentService", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/GamePlayMode.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GamePlayMode", "$schema": "http://json-schema.org/draft-07/schema#", "description": "Indicates whether this game is multi-player, co-op or single-player.", "format": "http://schema.org/GamePlayMode", "oneOf": [ { "const": "CoOp", "description": "Play mode: CoOp. Co-operative games, where you play on the same team with friends." }, { "const": "MultiPlayer", "description": "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously." }, { "const": "SinglePlayer", "description": "Play mode: SinglePlayer. Which is played by a lone player." } ], "title": "GamePlayMode", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c
2020-05-13T21:31:46
schemas/SoftwareSourceCode.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SoftwareSourceCode", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.", "format": "http://schema.org/SoftwareSourceCode", "properties": { "codeRepository": { "description": "Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).", "items": { "format": "uri", "type": "string" }, "type": "array" }, "codeSampleType": { "description": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.", "items": { "type": "string" }, "type": "array" }, "programmingLanguage": { "description": "The computer programming language.", "items": { "anyOf": [ { "type": "string" }, { "$ref": "ComputerLanguage.schema.json" } ] }, "type": "array" }, "runtime": { "description": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).", "type": "string" }, "runtimePlatform": { "description": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).", "items": { "type": "string" }, "type": "array" }, "sampleType": { "description": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.", "type": "string" }, "targetProduct": { "description": "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.", "items": { "$ref": "SoftwareApplication.schema.json" }, "type": "array" } }, "title": "SoftwareSourceCode", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/HowToTip.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowToTip", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." }, { "$ref": "ListItem.schema.json", "description": "An list item, e.g. a step in a checklist or how-to description." } ], "description": "An explanation in the instructions for how to achieve a result. It provides supplementary information about a technique, supply, author's preference, etc. It can explain what could be done, or what should not be done, but doesn't specify what should be done (see HowToDirection).", "format": "http://schema.org/HowToTip", "title": "HowToTip", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/LocalBusiness.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:LocalBusiness", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Organization", "description": "An organization such as a school, NGO, corporation, club, etc." }, { "$ref": "schema:Place", "description": "Entities that have a somewhat fixed, physical extension." } ], "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.", "properties": { "branchOf": { "$ref": "schema:Organization", "description": "The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)[[branch]]." }, "currenciesAccepted": { "description": "The currency accepted.\\n\\nUse standard formats: [ISO 4217 currency format](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" }, "openingHours": { "description": "The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.\\n\\n* Days are specified using the following two-letter combinations: ```Mo```, ```Tu```, ```We```, ```Th```, ```Fr```, ```Sa```, ```Su```.\\n* Times are specified using 24:00 format. For example, 3pm is specified as ```15:00```, 10am as ```10:00```. \\n* Here is an example: <time itemprop=\"openingHours\" datetime=\"Tu,Th 16:00-20:00\">Tuesdays and Thursdays 4-8pm</time>.\\n* If a business is open 7 days a week, then it can be specified as <time itemprop=\"openingHours\" datetime=\"Mo-Su\">Monday through Sunday, all day</time>.", "type": "string" }, "paymentAccepted": { "description": "Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "priceRange": { "description": "The price range of the business, for example ```$$$```.", "type": "string" } }, "title": "LocalBusiness", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/NightClub.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/NightClub", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/EntertainmentBusiness", "description": "A business providing entertainment." } ], "description": "A nightclub or discotheque.", "format": "http://schema.org/NightClub", "title": "NightClub", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/TipAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TipAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TradeAction.schema.json", "description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment." } ], "description": "The act of giving money voluntarily to a beneficiary in recognition of services rendered.", "format": "http://schema.org/TipAction", "properties": { "recipient": { "description": "A sub property of participant. The participant who is at the receiving end of the action.", "oneOf": [ { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, { "items": { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" } ] } }, "title": "TipAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/Book.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Book", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A book.", "format": "http://schema.org/Book", "properties": { "bookEdition": { "description": "The edition of the book.", "type": "string" }, "bookFormat": { "$ref": "BookFormatType.schema.json", "description": "The format of the book." }, "illustrator": { "$ref": "Person.schema.json", "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
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/PhysicalTherapy.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:PhysicalTherapy", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:MedicalTherapy", "description": "Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition." } ], "description": "A process of progressive physical care and rehabilitation aimed at improving a health condition.", "title": "PhysicalTherapy", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
schemas/MobileApplication.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MobileApplication", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "SoftwareApplication.schema.json", "description": "A software application." } ], "description": "A software application designed specifically to work well on a mobile device such as a telephone.", "format": "http://schema.org/MobileApplication", "properties": { "carrierRequirements": { "description": "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).", "type": "string" } }, "title": "MobileApplication", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/InsertAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/InsertAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "AddAction.schema.json", "description": "The act of editing by adding an object to a collection." } ], "description": "The act of adding at a specific location in an ordered collection.", "format": "http://schema.org/InsertAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "InsertAction" }, "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": "InsertAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
schemas/PayAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PayAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TradeAction.schema.json", "description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment." } ], "description": "An agent pays a price to a participant.", "format": "http://schema.org/PayAction", "properties": { "recipient": { "description": "A sub property of participant. The participant who is at the receiving end of the action.", "items": { "anyOf": [ { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" } }, "title": "PayAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/StructuredValue.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/StructuredValue", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Intangible", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing.", "format": "http://schema.org/StructuredValue", "title": "StructuredValue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/FilmAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:FilmAction", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:CreateAction", "description": "The act of deliberately creating/producing/generating/building a result out of the agent." } ], "description": "The act of capturing sound and moving images on film, video, or digitally.", "title": "FilmAction", "type": "object" }
Apache-2.0
en