repository
stringclasses 528
values | commit
stringlengths 40
40
| commitDate
timestamp[s] | path
stringlengths 11
149
| repoStars
int64 5
94.9k
| repoLastFetched
stringclasses 528
values | content
stringlengths 48
736k
| license
stringclasses 14
values | language
stringclasses 7
values |
---|---|---|---|---|---|---|---|---|
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Motel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Motel",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "LodgingBusiness.schema.json",
"description": "A lodging business, such as a motel, hotel, or inn."
}
],
"description": "A motel.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.",
"format": "http://schema.org/Motel",
"title": "Motel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/CafeOrCoffeeShop.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:CafeOrCoffeeShop",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:FoodEstablishment",
"description": "A food-related business."
}
],
"description": "A cafe or coffee shop.",
"title": "CafeOrCoffeeShop",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/LendAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LendAction",
"$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 providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\n\nRelated actions:\n\n\nBorrowAction: Reciprocal of LendAction.\n\n",
"format": "http://schema.org/LendAction",
"properties": {
"borrower": {
"description": "A sub property of participant. The person that borrows the object being lent.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
}
},
"title": "LendAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/ItemList.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ItemList",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Intangible",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A list of items of any sort\u2014for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.",
"format": "http://schema.org/ItemList",
"properties": {
"itemListElement": {
"description": "For itemListElement values, you can use simple strings (e.g. \"Peter\", \"Paul\", \"Mary\"), existing entities, or use ListItem.\n\nText values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.\n\nNote: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/ListItem"
},
{
"$ref": "http://schema.org/Thing"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/ListItem"
},
{
"$ref": "http://schema.org/Thing"
}
]
},
"type": "array"
}
]
},
"itemListOrder": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/ItemListOrderType"
}
],
"description": "Type of ordering (e.g. Ascending, Descending, Unordered)."
},
"numberOfItems": {
"description": "The number of items in an ItemList. Note that some descriptions might not fully describe all items in a list (e.g., multi-page pagination); in such cases, the numberOfItems would be for the entire list.",
"type": "integer"
}
},
"title": "ItemList",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Airport.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Airport",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CivicStructure.schema.json",
"description": "A public structure, such as a town hall or concert hall."
}
],
"description": "An airport.",
"format": "http://schema.org/Airport",
"properties": {
"iataCode": {
"description": "IATA identifier for an airline or airport.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"icaoCode": {
"description": "ICAO identifier for an airport.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
}
},
"title": "Airport",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/RentAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/RentAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/TradeAction",
"description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment."
}
],
"description": "The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment.",
"properties": {
"landlord": {
"description": "A sub property of participant. The owner of the real estate property.",
"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"
}
]
},
"realEstateAgent": {
"description": "A sub property of participant. The real estate agent involved in the action.",
"oneOf": [
{
"$ref": "http://schema.org/RealEstateAgent"
},
{
"items": {
"$ref": "http://schema.org/RealEstateAgent"
},
"type": "array"
}
]
}
},
"title": "RentAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | schemas/Offer.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Offer",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "An offer to transfer some rights to an item or to provide a service \u2014 for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\n\nNote: As the businessFunction property, which identifies the form of offer (e.g. sell, lease, repair, dispose), defaults to http://purl.org/goodrelations/v1#Sell; an Offer without a defined businessFunction value can be assumed to be an offer to sell.\n\nFor GTIN-related fields, see Check Digit calculator and validation guide from GS1.",
"format": "http://schema.org/Offer",
"properties": {
"acceptedPaymentMethod": {
"anyOf": [
{
"$ref": "LoanOrCredit.schema.json"
},
{
"$ref": "PaymentMethod.schema.json"
}
],
"description": "The payment method(s) accepted by seller for this offer."
},
"addOn": {
"description": "An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).",
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
},
"advanceBookingRequirement": {
"$ref": "QuantitativeValue.schema.json",
"description": "The amount of time that is required between accepting the offer and the actual usage of the resource or service."
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"areaServed": {
"anyOf": [
{
"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."
},
"availability": {
"$ref": "ItemAvailability.schema.json",
"description": "The availability of this item\u2014for example In stock, Out of stock, Pre-order, etc."
},
"availabilityEnds": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The end of the availability of the product or service included in the offer."
},
"availabilityStarts": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The beginning of the availability of the product or service included in the offer."
},
"availableAtOrFrom": {
"$ref": "Place.schema.json",
"description": "The place(s) from which the offer can be obtained (e.g. store locations)."
},
"availableDeliveryMethod": {
"$ref": "DeliveryMethod.schema.json",
"description": "The delivery method(s) available for this offer."
},
"businessFunction": {
"$ref": "BusinessFunction.schema.json",
"description": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell."
},
"category": {
"description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
},
"deliveryLeadTime": {
"$ref": "QuantitativeValue.schema.json",
"description": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup."
},
"eligibleCustomerType": {
"$ref": "BusinessEntityType.schema.json",
"description": "The type(s) of customers for which the given offer is valid."
},
"eligibleDuration": {
"$ref": "QuantitativeValue.schema.json",
"description": "The duration for which the given offer is valid."
},
"eligibleQuantity": {
"$ref": "QuantitativeValue.schema.json",
"description": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity."
},
"eligibleRegion": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "GeoShape.schema.json"
},
{
"$ref": "Place.schema.json"
}
],
"description": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\n\nSee also ineligibleRegion."
},
"eligibleTransactionVolume": {
"$ref": "PriceSpecification.schema.json",
"description": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount."
},
"gtin12": {
"description": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin13": {
"description": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin14": {
"description": "The GTIN-14 code of the product, or the product to which the offer refers. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin8": {
"description": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.",
"type": "string"
},
"includesObject": {
"description": "This links to a node or nodes indicating the exact quantity of the products included in the offer.",
"items": {
"$ref": "TypeAndQuantityNode.schema.json"
},
"type": "array"
},
"inventoryLevel": {
"$ref": "QuantitativeValue.schema.json",
"description": "The current approximate inventory level for the item or items."
},
"itemCondition": {
"description": "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.",
"items": {
"$ref": "OfferItemCondition.schema.json"
},
"type": "array"
},
"itemOffered": {
"anyOf": [
{
"$ref": "AggregateOffer.schema.json"
},
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "Event.schema.json"
},
{
"$ref": "MenuItem.schema.json"
},
{
"$ref": "Product.schema.json"
},
{
"$ref": "Service.schema.json"
},
{
"$ref": "Trip.schema.json"
}
],
"description": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using businessFunction, e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer."
},
"mpn": {
"description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
"type": "string"
},
"offeredBy": {
"description": "A pointer to the organization or person making the offer.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"price": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\n\nUsage guidelines:\n\n\nUse the priceCurrency property (with standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\") instead of including ambiguous symbols such as '$' in the value.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\nNote that both RDFa and Microdata syntax allow the use of a \"content=\" attribute for publishing simple machine-readable values alongside more human-friendly formatting.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n\n"
},
"priceCurrency": {
"description": "The currency of the price, or a price component when attached to PriceSpecification and its subtypes.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".",
"type": "string"
},
"priceSpecification": {
"description": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.",
"items": {
"$ref": "PriceSpecification.schema.json"
},
"type": "array"
},
"priceValidUntil": {
"description": "The date after which the price is no longer available.",
"format": "date",
"type": "string"
},
"review": {
"description": "A review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"reviews": {
"description": "Review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"seller": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider."
},
"serialNumber": {
"description": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
"type": "string"
},
"sku": {
"description": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
"type": "string"
},
"validFrom": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date when the item becomes valid."
},
"validThrough": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours."
},
"warranty": {
"$ref": "WarrantyPromise.schema.json",
"description": "The warranty promise(s) included in the offer."
}
},
"title": "Offer",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/GameServer.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/GameServer",
"$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": "Server that provides game interaction in a multiplayer game.",
"format": "http://schema.org/GameServer",
"properties": {
"game": {
"description": "Video game which is played on this server.",
"items": {
"$ref": "VideoGame.schema.json"
},
"type": "array"
},
"playersOnline": {
"description": "Number of players on the server.",
"items": {
"type": "integer"
},
"type": "array"
},
"serverStatus": {
"description": "Status of a game server.",
"items": {
"$ref": "GameServerStatus.schema.json"
},
"type": "array"
}
},
"title": "GameServer",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Vessel.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Vessel",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:AnatomicalStructure",
"description": "Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures."
}
],
"description": "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.",
"title": "Vessel",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/TaxiReservation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TaxiReservation",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Reservation.schema.json",
"description": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use Offer."
}
],
"description": "A reservation for a taxi.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use Offer.",
"format": "http://schema.org/TaxiReservation",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "TaxiReservation"
},
"partySize": {
"description": "Number of people the reservation should accommodate.",
"oneOf": [
{
"anyOf": [
{
"type": "integer"
},
{
"$ref": "QuantitativeValue.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"type": "integer"
},
{
"$ref": "QuantitativeValue.schema.json"
}
]
},
"type": "array"
}
]
},
"pickupLocation": {
"description": "Where a taxi will pick up a passenger or a rental car can be picked up.",
"oneOf": [
{
"$ref": "Place.schema.json"
},
{
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
}
]
},
"pickupTime": {
"description": "When a taxi will pickup a passenger or a rental car can be picked up.",
"oneOf": [
{
"format": "date-time",
"type": "string"
},
{
"items": {
"format": "date-time",
"type": "string"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "TaxiReservation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Airport.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Airport",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CivicStructure",
"description": "A public structure, such as a town hall or concert hall."
}
],
"description": "An airport.",
"format": "http://schema.org/Airport",
"properties": {
"iataCode": {
"description": "IATA identifier for an airline or airport.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"icaoCode": {
"description": "ICAO identifier for an airport.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
}
},
"title": "Airport",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/Game.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Game",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting.",
"format": "http://schema.org/Game",
"properties": {
"characterAttribute": {
"description": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
},
"gameItem": {
"description": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
},
"gameLocation": {
"description": "Real or fictional location of the game (or part of game).",
"items": {
"anyOf": [
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"numberOfPlayers": {
"description": "Indicate how many people can play this game (minimum, maximum, or range).",
"items": {
"$ref": "QuantitativeValue.schema.json"
},
"type": "array"
},
"quest": {
"$ref": "Thing.schema.json",
"description": "The task that a player-controlled character, or group of characters may complete in order to gain a reward."
}
},
"title": "Game",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/WPAdBlock.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WPAdBlock",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/WebPageElement",
"description": "A web page element, like a table or an image."
}
],
"description": "An advertising section of the page.",
"title": "WPAdBlock",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/VideoGame.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/VideoGame",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Game.schema.json",
"description": "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting."
},
{
"$ref": "SoftwareApplication.schema.json",
"description": "A software application."
}
],
"description": "A video game is an electronic game that involves human interaction with a user interface to generate visual feedback on a video device.",
"format": "http://schema.org/VideoGame",
"properties": {
"actor": {
"description": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"actors": {
"description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"cheatCode": {
"description": "Cheat codes to the game.",
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
},
"director": {
"$ref": "Person.schema.json",
"description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip."
},
"directors": {
"description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"gamePlatform": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
],
"description": "The electronic systems used to play video games."
},
"gameServer": {
"$ref": "GameServer.schema.json",
"description": "The server on which it is possible to play the game."
},
"gameTip": {
"description": "Links to tips, tactics, etc.",
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
},
"musicBy": {
"anyOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "MusicGroup.schema.json"
}
],
"description": "The composer of the soundtrack."
},
"playMode": {
"description": "Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.",
"items": {
"$ref": "GamePlayMode.schema.json"
},
"type": "array"
},
"trailer": {
"$ref": "VideoObject.schema.json",
"description": "The trailer of a movie or tv/radio series, season, episode, etc."
}
},
"title": "VideoGame",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/TakeAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TakeAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/TransferAction",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another."
}
],
"description": "The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.\n\nRelated actions:\n\n\nGiveAction: The reciprocal of TakeAction.\nReceiveAction: Unlike ReceiveAction, TakeAction implies that ownership has been transfered.\n\n",
"format": "http://schema.org/TakeAction",
"title": "TakeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/AdministrativeArea.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AdministrativeArea",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Place.schema.json",
"description": "Entities that have a somewhat fixed, physical extension."
}
],
"description": "A geographical region, typically under the jurisdiction of a particular government.",
"format": "http://schema.org/AdministrativeArea",
"title": "AdministrativeArea",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/OwnershipInfo.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/OwnershipInfo",
"$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 providing information about when a certain organization or person owned a certain product.",
"format": "http://schema.org/OwnershipInfo",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "OwnershipInfo"
},
"acquiredFrom": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The organization or person from which the product was acquired."
},
"ownedFrom": {
"description": "The date and time of obtaining the product.",
"format": "date-time",
"type": "string"
},
"ownedThrough": {
"description": "The date and time of giving up ownership on the product.",
"format": "date-time",
"type": "string"
},
"typeOfGood": {
"anyOf": [
{
"$ref": "Product.schema.json"
},
{
"$ref": "Service.schema.json"
}
],
"description": "The product that this structured value is referring to."
}
},
"required": [
"@type"
],
"title": "OwnershipInfo",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/TheaterEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TheaterEvent",
"$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: Theater performance.",
"format": "http://schema.org/TheaterEvent",
"title": "TheaterEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/ParcelDelivery.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ParcelDelivery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "The delivery of a parcel either via the postal service or a commercial service.",
"format": "http://schema.org/ParcelDelivery",
"properties": {
"carrier": {
"$ref": "Organization.schema.json",
"description": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights."
},
"deliveryAddress": {
"$ref": "PostalAddress.schema.json",
"description": "Destination address."
},
"deliveryStatus": {
"description": "New entry added as the package passes through each leg of its journey (from shipment to final delivery).",
"oneOf": [
{
"$ref": "DeliveryEvent.schema.json"
},
{
"items": {
"$ref": "DeliveryEvent.schema.json"
},
"type": "array"
}
]
},
"expectedArrivalFrom": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The earliest date the package may arrive."
},
"expectedArrivalUntil": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The latest date the package may arrive."
},
"hasDeliveryMethod": {
"$ref": "DeliveryMethod.schema.json",
"description": "Method used for delivery or shipping."
},
"itemShipped": {
"description": "Item(s) being shipped.",
"oneOf": [
{
"$ref": "Product.schema.json"
},
{
"items": {
"$ref": "Product.schema.json"
},
"type": "array"
}
]
},
"originAddress": {
"$ref": "PostalAddress.schema.json",
"description": "Shipper's address."
},
"partOfOrder": {
"$ref": "Order.schema.json",
"description": "The overall order the items in this delivery were included in."
},
"provider": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller."
},
"trackingNumber": {
"description": "Shipper tracking number.",
"type": "string"
},
"trackingUrl": {
"description": "Tracking url for the parcel delivery.",
"format": "uri",
"type": "string"
}
},
"title": "ParcelDelivery",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/BoardingPolicyType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:BoardingPolicyType",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A type of boarding policy used by an airline.",
"oneOf": [
{
"const": "GroupBoardingPolicy",
"description": "The airline boards by groups based on check-in time, priority, etc."
},
{
"const": "ZoneBoardingPolicy",
"description": "The airline boards by zones of the plane."
}
],
"title": "BoardingPolicyType",
"type": "string"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/WebPage.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WebPage",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page.",
"format": "http://schema.org/WebPage",
"properties": {
"breadcrumb": {
"description": "A set of links that can help a user understand and navigate a website hierarchy.",
"items": {
"$ref": "BreadcrumbList.schema.json"
},
"type": "array"
},
"lastReviewed": {
"description": "Date on which the content on this web page was last reviewed for accuracy and/or completeness.",
"format": "http://schema.org/Date"
},
"mainContentOfPage": {
"$ref": "WebPageElement.schema.json",
"description": "Indicates if this web page element is the main subject of the page."
},
"primaryImageOfPage": {
"$ref": "ImageObject.schema.json",
"description": "Indicates the main image on the page."
},
"relatedLink": {
"description": "A link related to this web page, for example to other related web pages.",
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
},
"reviewedBy": {
"description": "People or organizations that have reviewed the content on this web page for accuracy and/or completeness.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"significantLink": {
"description": "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
},
"significantLinks": {
"description": "The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
"format": "uri",
"type": "string"
},
"speakable": {
"description": "Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.\n\nThe speakable property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:\n\n1.) id-value URL references - uses id-value of an element in the page being annotated. The simplest use of speakable has (potentially relative) URL values, referencing identified sections of the document concerned.\n\n2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the cssSelector property.\n\n3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the xpath property.\n\nFor more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For this\nwe define a supporting type, SpeakableSpecification which is defined to be a possible value of the speakable property.",
"items": {
"oneOf": [
{
"$ref": "SpeakableSpecification.schema.json"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"specialty": {
"description": "One of the domain specialities to which this web page's content applies.",
"items": {
"$ref": "Specialty.schema.json"
},
"type": "array"
}
},
"title": "WebPage",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | ccfd7867a8f0a96f421a90bfd617be8735463a02 | 2020-05-27T22:00:22 | schemas/ActionStatusType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ActionStatusType",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "The status of an Action.",
"oneOf": [
{
"const": "ActiveActionStatus",
"description": "An in-progress action (e.g, while watching the movie, or driving to a location)."
},
{
"const": "CompletedActionStatus",
"description": "An action that has already taken place."
},
{
"const": "FailedActionStatus",
"description": "An action that failed to complete. The action's error property and the HTTP return code contain more information about the failure."
},
{
"const": "PotentialActionStatus",
"description": "A description of an action that is supported."
}
],
"title": "ActionStatusType",
"type": "string"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/MusicGroup.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MusicGroup",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PerformingGroup.schema.json",
"description": "A performance group, such as a band, an orchestra, or a circus."
}
],
"description": "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.",
"format": "http://schema.org/MusicGroup",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "MusicGroup"
},
"album": {
"description": "A music album.",
"items": {
"$ref": "MusicAlbum.schema.json"
},
"type": "array"
},
"albums": {
"description": "A collection of music albums.",
"items": {
"$ref": "MusicAlbum.schema.json"
},
"type": "array"
},
"genre": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "Genre of the creative work, broadcast channel or group."
},
"musicGroupMember": {
"description": "A member of a music group\u2014for example, John, Paul, George, or Ringo.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"track": {
"description": "A music recording (track)\u2014usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.",
"items": {
"anyOf": [
{
"$ref": "ItemList.schema.json"
},
{
"$ref": "MusicRecording.schema.json"
}
]
},
"type": "array"
},
"tracks": {
"description": "A music recording (track)\u2014usually a single song.",
"items": {
"$ref": "MusicRecording.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "MusicGroup",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/AuthorizeAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AuthorizeAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AllocateAction.schema.json",
"description": "The act of organizing tasks/objects/events by associating resources to it."
}
],
"description": "The act of granting permission to an object.",
"format": "http://schema.org/AuthorizeAction",
"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": "AuthorizeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/AggregateOffer.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AggregateOffer",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Offer.schema.json",
"description": "An offer to transfer some rights to an item or to provide a service \u2014 for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.\n\nNote: As the businessFunction property, which identifies the form of offer (e.g. sell, lease, repair, dispose), defaults to http://purl.org/goodrelations/v1#Sell; an Offer without a defined businessFunction value can be assumed to be an offer to sell.\n\nFor GTIN-related fields, see Check Digit calculator and validation guide from GS1."
}
],
"description": "When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\n\nNote: AggregateOffers are normally expected to associate multiple offers that all share the same defined businessFunction value, or default to http://purl.org/goodrelations/v1#Sell if businessFunction is not explicitly defined.",
"format": "http://schema.org/AggregateOffer",
"properties": {
"highPrice": {
"description": "The highest price of all offers available.\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",
"format": "http://schema.org/Text"
},
"lowPrice": {
"description": "The lowest price of all offers available.\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",
"format": "http://schema.org/Text"
},
"offerCount": {
"description": "The number of offers for the product.",
"type": "integer"
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"items": {
"oneOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
"type": "array"
}
},
"title": "AggregateOffer",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | 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": {
"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"
}
]
}
},
"title": "SportsTeam",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/LegalService.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LegalService",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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 LegalService is a business that provides legally-oriented services, advice and representation, e.g. law firms.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s).",
"format": "http://schema.org/LegalService",
"title": "LegalService",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Restaurant.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Restaurant",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "FoodEstablishment.schema.json",
"description": "A food-related business."
}
],
"description": "A restaurant.",
"format": "http://schema.org/Restaurant",
"title": "Restaurant",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/ConvenienceStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ConvenienceStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Store",
"description": "A retail good store."
}
],
"description": "A convenience store.",
"title": "ConvenienceStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Trip.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Trip",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A trip or journey. An itinerary of visits to one or more places.",
"format": "http://schema.org/Trip",
"properties": {
"arrivalTime": {
"description": "The expected arrival time.",
"format": "http://schema.org/Time"
},
"departureTime": {
"description": "The expected departure time.",
"format": "http://schema.org/Time"
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"items": {
"oneOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.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."
}
},
"title": "Trip",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/Flight.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Flight",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Trip.schema.json",
"description": "A trip or journey. An itinerary of visits to one or more places."
}
],
"description": "An airline flight.",
"format": "http://schema.org/Flight",
"properties": {
"aircraft": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Vehicle.schema.json"
}
],
"description": "The kind of aircraft (e.g., \"Boeing 747\")."
},
"arrivalAirport": {
"$ref": "Airport.schema.json",
"description": "The airport where the flight terminates."
},
"arrivalGate": {
"description": "Identifier of the flight's arrival gate.",
"items": {
"type": "string"
},
"type": "array"
},
"arrivalTerminal": {
"description": "Identifier of the flight's arrival terminal.",
"items": {
"type": "string"
},
"type": "array"
},
"boardingPolicy": {
"$ref": "BoardingPolicyType.schema.json",
"description": "The type of boarding policy used by the airline (e.g. zone-based or group-based)."
},
"carrier": {
"$ref": "Organization.schema.json",
"description": "'carrier' is an out-dated term indicating the 'provider' for parcel delivery and flights."
},
"departureAirport": {
"$ref": "Airport.schema.json",
"description": "The airport where the flight originates."
},
"departureGate": {
"description": "Identifier of the flight's departure gate.",
"items": {
"type": "string"
},
"type": "array"
},
"departureTerminal": {
"description": "Identifier of the flight's departure terminal.",
"items": {
"type": "string"
},
"type": "array"
},
"estimatedFlightDuration": {
"anyOf": [
{
"format": "https://schema.org/Duration",
"type": "string"
},
{
"type": "string"
}
],
"description": "The estimated time the flight will take."
},
"flightDistance": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"type": "string"
}
],
"description": "The distance of the flight."
},
"flightNumber": {
"description": "The unique identifier for a flight including the airline IATA code. For example, if describing United flight 110, where the IATA code for United is 'UA', the flightNumber is 'UA110'.",
"type": "string"
},
"mealService": {
"description": "Description of the meals that will be provided or available for purchase.",
"items": {
"type": "string"
},
"type": "array"
},
"seller": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider."
},
"webCheckinTime": {
"description": "The time when a passenger can check into the flight online.",
"format": "date-time",
"type": "string"
}
},
"title": "Flight",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Role.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Role",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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": "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.",
"properties": {
"endDate": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The end date and time of the item (in ISO 8601 date format)."
},
"namedPosition": {
"description": "A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
},
"roleName": {
"description": "A role played, performed or filled by a person or organization. For example, the team of creators for a comic book might fill the roles named 'inker', 'penciller', and 'letterer'; or an athlete in a SportsTeam might play in the position named 'Quarterback'.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
},
"startDate": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The start date and time of the item (in ISO 8601 date format)."
}
},
"title": "Role",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/PerformAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:PerformAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:PlayAction",
"description": "The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.\\n\\nRelated actions:\\n\\n* [[ListenAction]]: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.\\n* [[WatchAction]]: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content."
}
],
"description": "The act of participating in performance arts.",
"properties": {
"entertainmentBusiness": {
"description": "A sub property of location. The entertainment business where the action occurred.",
"oneOf": [
{
"$ref": "schema:EntertainmentBusiness"
},
{
"items": {
"$ref": "schema:EntertainmentBusiness"
},
"type": "array"
}
]
}
},
"title": "PerformAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/PostalAddress.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:PostalAddress",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:ContactPoint",
"description": "A contact point\u2014for example, a Customer Complaints department."
}
],
"description": "The mailing address.",
"properties": {
"addressCountry": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:Country"
}
],
"description": "The country. For example, USA. You can also provide the two-letter [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1)."
},
"addressLocality": {
"description": "The locality in which the street address is, and which is in the region. For example, Mountain View.",
"type": "string"
},
"addressRegion": {
"description": "The region in which the locality is, and which is in the country. For example, California or another appropriate first-level [Administrative division](https://en.wikipedia.org/wiki/List_of_administrative_divisions_by_country) ",
"type": "string"
},
"postOfficeBoxNumber": {
"description": "The post office box number for PO box addresses.",
"type": "string"
},
"postalCode": {
"description": "The postal code. For example, 94043.",
"type": "string"
},
"streetAddress": {
"description": "The street address. For example, 1600 Amphitheatre Pkwy.",
"type": "string"
}
},
"title": "PostalAddress",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/JobPosting.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:JobPosting",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Intangible",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A listing that describes a job opening in a certain organization.",
"properties": {
"applicantLocationRequirements": {
"$ref": "schema:AdministrativeArea",
"description": "The location(s) applicants can apply from. This is usually used for telecommuting jobs where the applicant does not need to be in a physical office. Note: This should not be used for citizenship or work visa requirements."
},
"applicationContact": {
"description": "Contact details for further information relevant to this job posting.",
"oneOf": [
{
"$ref": "schema:ContactPoint"
},
{
"items": {
"$ref": "schema:ContactPoint"
},
"type": "array"
}
]
},
"baseSalary": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "schema:MonetaryAmount"
},
{
"$ref": "schema:PriceSpecification"
}
],
"description": "The base salary of the job or of an employee in an EmployeeRole."
},
"benefits": {
"description": "Description of benefits associated with the job.",
"type": "string"
},
"datePosted": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "Publication date of an online listing."
},
"directApply": {
"description": "Indicates whether an [[url]] that is associated with a [[JobPosting]] enables direct application for the job, via the posting website. A job posting is considered to have directApply of [[True]] if an application process for the specified job can be directly initiated via the url(s) given (noting that e.g. multiple internet domains might nevertheless be involved at an implementation level). A value of [[False]] is appropriate if there is no clear path to applying directly online for the specified job, navigating directly from the JobPosting url(s) supplied.",
"type": "boolean"
},
"educationRequirements": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:EducationalOccupationalCredential"
}
],
"description": "Educational background needed for the position or Occupation."
},
"eligibilityToWorkRequirement": {
"description": "The legal requirements such as citizenship, visa and other documentation required for an applicant to this job.",
"type": "string"
},
"employerOverview": {
"description": "A description of the employer, career opportunities and work environment for this position.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"employmentType": {
"description": "Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"employmentUnit": {
"description": "Indicates the department, unit and/or facility where the employee reports and/or in which the job is to be performed.",
"oneOf": [
{
"$ref": "schema:Organization"
},
{
"items": {
"$ref": "schema:Organization"
},
"type": "array"
}
]
},
"estimatedSalary": {
"description": "An estimated salary for a job posting or occupation, based on a variety of variables including, but not limited to industry, job title, and location. Estimated salaries are often computed by outside organizations rather than the hiring organization, who may not have committed to the estimated value.",
"oneOf": [
{
"anyOf": [
{
"type": "number"
},
{
"$ref": "schema:MonetaryAmount"
},
{
"$ref": "schema:MonetaryAmountDistribution"
}
]
},
{
"items": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "schema:MonetaryAmount"
},
{
"$ref": "schema:MonetaryAmountDistribution"
}
]
},
"type": "array"
}
]
},
"experienceInPlaceOfEducation": {
"description": "Indicates whether a [[JobPosting]] will accept experience (as indicated by [[OccupationalExperienceRequirements]]) in place of its formal educational qualifications (as indicated by [[educationRequirements]]). If true, indicates that satisfying one of these requirements is sufficient.",
"type": "boolean"
},
"experienceRequirements": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:OccupationalExperienceRequirements"
}
],
"description": "Description of skills and experience needed for the position or Occupation."
},
"hiringOrganization": {
"$ref": "schema:Organization",
"description": "Organization offering the job position."
},
"incentiveCompensation": {
"description": "Description of bonus and commission compensation aspects of the job.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"incentives": {
"description": "Description of bonus and commission compensation aspects of the job.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"industry": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:DefinedTerm"
}
],
"description": "The industry associated with the job position."
},
"jobBenefits": {
"description": "Description of benefits associated with the job.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"jobImmediateStart": {
"description": "An indicator as to whether a position is available for an immediate start.",
"type": "boolean"
},
"jobLocation": {
"description": "A (typically single) geographic location associated with the job position.",
"oneOf": [
{
"$ref": "schema:Place"
},
{
"items": {
"$ref": "schema:Place"
},
"type": "array"
}
]
},
"jobLocationType": {
"description": "A description of the job location (e.g TELECOMMUTE for telecommute jobs).",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"jobStartDate": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"type": "string"
}
],
"description": "The date on which a successful applicant for this job would be expected to start work. Choose a specific date in the future or use the jobImmediateStart property to indicate the position is to be filled as soon as possible."
},
"occupationalCategory": {
"description": "A category describing the job, preferably using a term from a taxonomy such as [BLS O*NET-SOC](http://www.onetcenter.org/taxonomy.html), [ISCO-08](https://www.ilo.org/public/english/bureau/stat/isco/isco08/) or similar, with the property repeated for each applicable value. Ideally the taxonomy should be identified, and both the textual label and formal code for the category should be provided.\\n\nNote: for historical reasons, any textual label and formal code provided as a literal may be assumed to be from O*NET-SOC.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:CategoryCode"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:CategoryCode"
}
]
},
"type": "array"
}
]
},
"physicalRequirement": {
"description": "A description of the types of physical activity associated with the job. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "schema:DefinedTerm"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "schema:DefinedTerm"
}
]
},
"type": "array"
}
]
},
"qualifications": {
"description": "Specific qualifications required for this role or Occupation.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:EducationalOccupationalCredential"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:EducationalOccupationalCredential"
}
]
},
"type": "array"
}
]
},
"relevantOccupation": {
"$ref": "schema:Occupation",
"description": "The Occupation for the JobPosting."
},
"responsibilities": {
"description": "Responsibilities associated with this role or Occupation.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"salaryCurrency": {
"description": "The currency (coded using [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) ) used for the main salary information in this job posting or for this employee.",
"type": "string"
},
"securityClearanceRequirement": {
"description": "A description of any security clearance requirements of the job.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
},
"sensoryRequirement": {
"description": "A description of any sensory requirements and levels necessary to function on the job, including hearing and vision. Defined terms such as those in O*net may be used, but note that there is no way to specify the level of ability as well as its nature when using a defined term.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "schema:DefinedTerm"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "schema:DefinedTerm"
}
]
},
"type": "array"
}
]
},
"skills": {
"description": "A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:DefinedTerm"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:DefinedTerm"
}
]
},
"type": "array"
}
]
},
"specialCommitments": {
"description": "Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"title": {
"description": "The title of the job.",
"type": "string"
},
"totalJobOpenings": {
"description": "The number of positions open for this job posting. Use a positive integer. Do not use if the number of positions is unclear or not known.",
"type": "integer"
},
"validThrough": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours."
},
"workHours": {
"description": "The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).",
"type": "string"
}
},
"title": "JobPosting",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/WatchAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WatchAction",
"$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 consuming dynamic/moving visual content.",
"format": "http://schema.org/WatchAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "WatchAction"
}
},
"required": [
"@type"
],
"title": "WatchAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/IndividualProduct.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/IndividualProduct",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Product.schema.json",
"description": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online."
}
],
"description": "A single, identifiable product instance (e.g. a laptop with a particular serial number).",
"format": "http://schema.org/IndividualProduct",
"properties": {
"serialNumber": {
"description": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
"format": "http://schema.org/Text"
}
},
"title": "IndividualProduct",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/WearAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:WearAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:UseAction",
"description": "The act of applying an object to its intended purpose."
}
],
"description": "The act of dressing oneself in clothing.",
"title": "WearAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/ListItem.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ListItem",
"$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 list item, e.g. a step in a checklist or how-to description.",
"format": "http://schema.org/ListItem",
"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": "Thing.schema.json"
},
{
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
}
]
},
"nextItem": {
"description": "A link to the ListItem that follows the current one.",
"oneOf": [
{
"$ref": "ListItem.schema.json"
},
{
"items": {
"$ref": "ListItem.schema.json"
},
"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": "ListItem.schema.json"
},
{
"items": {
"$ref": "ListItem.schema.json"
},
"type": "array"
}
]
}
},
"title": "ListItem",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/VoteAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/VoteAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "ChooseAction.schema.json",
"description": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options."
}
],
"description": "The act of expressing a preference from a fixed/finite/structured set of choices/options.",
"format": "http://schema.org/VoteAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "VoteAction"
},
"candidate": {
"description": "A sub property of object. The candidate subject of this action.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "VoteAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/ShoppingCenter.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ShoppingCenter",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "LocalBusiness.schema.json",
"description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc."
}
],
"description": "A shopping center or mall.",
"format": "http://schema.org/ShoppingCenter",
"title": "ShoppingCenter",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/Action.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Action",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document.",
"format": "http://schema.org/Action",
"properties": {
"actionStatus": {
"description": "Indicates the current disposition of the Action.",
"items": {
"$ref": "ActionStatusType.schema.json"
},
"type": "array"
},
"agent": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The direct performer or driver of the action (animate or inanimate). e.g. John wrote a book."
},
"endTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions."
},
"error": {
"description": "For failed actions, more information on the cause of the failure.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
},
"instrument": {
"$ref": "Thing.schema.json",
"description": "The object that helped the agent perform the action. e.g. John wrote a book with a pen."
},
"location": {
"anyOf": [
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
},
{
"type": "string"
}
],
"description": "The location of for example where the event is happening, an organization is located, or where an action takes place."
},
"object": {
"$ref": "Thing.schema.json",
"description": "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read a book."
},
"participant": {
"description": "Other co-agents that participated in the action indirectly. e.g. John wrote a book with Steve.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"result": {
"$ref": "Thing.schema.json",
"description": "The result produced in the action. e.g. John wrote a book."
},
"startTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions."
},
"target": {
"description": "Indicates a target EntryPoint for an Action.",
"items": {
"$ref": "EntryPoint.schema.json"
},
"type": "array"
}
},
"title": "Action",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/PrependAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PrependAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "InsertAction.schema.json",
"description": "The act of adding at a specific location in an ordered collection."
}
],
"description": "The act of inserting at the beginning if an ordered collection.",
"format": "http://schema.org/PrependAction",
"title": "PrependAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/WholesaleStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WholesaleStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A wholesale store.",
"format": "http://schema.org/WholesaleStore",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "WholesaleStore"
}
},
"required": [
"@type"
],
"title": "WholesaleStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/TireShop.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TireShop",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A tire shop.",
"format": "http://schema.org/TireShop",
"title": "TireShop",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/Place.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Place",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"description": "Entities that have a somewhat fixed, physical extension.",
"format": "http://schema.org/Place",
"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"
},
"address": {
"anyOf": [
{
"$ref": "PostalAddress.schema.json"
},
{
"type": "string"
}
],
"description": "Physical address of the item."
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"amenityFeature": {
"description": "An amenity feature (e.g. a characteristic or service) of the Accommodation. This generic property does not make a statement about whether the feature is included in an offer for the main accommodation or available at extra costs.",
"items": {
"$ref": "LocationFeatureSpecification.schema.json"
},
"type": "array"
},
"branchCode": {
"description": "A short textual code (also called \"store code\") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.\n\nFor example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code \"3047\" is a branchCode for a particular branch.",
"items": {
"type": "string"
},
"type": "array"
},
"containedIn": {
"$ref": "Place.schema.json",
"description": "The basic containment relation between a place and one that contains it."
},
"containedInPlace": {
"$ref": "Place.schema.json",
"description": "The basic containment relation between a place and one that contains it."
},
"containsPlace": {
"$ref": "Place.schema.json",
"description": "The basic containment relation between a place and another that it contains."
},
"event": {
"description": "Upcoming or past event associated with this place, organization, or action.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"events": {
"description": "Upcoming or past events associated with this place or organization.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"faxNumber": {
"description": "The fax number.",
"type": "string"
},
"geo": {
"anyOf": [
{
"$ref": "GeoCoordinates.schema.json"
},
{
"$ref": "GeoShape.schema.json"
}
],
"description": "The geo coordinates of the place."
},
"geoContains": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. \"a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a\". As defined in DE-9IM.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"geoCoveredBy": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in DE-9IM.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"geoCovers": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. \"Every point of b is a point of (the interior or boundary of) a\". As defined in DE-9IM.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"geoCrosses": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: \"a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them\". As defined in DE-9IM.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"geoDisjoint": {
"description": "Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: they have no point in common. They form a set of disconnected geometries.\" (a symmetric relationship, as defined in DE-9IM)",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"geoEquals": {
"description": "Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in DE-9IM. \"Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other\" (a symmetric relationship)",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"geoIntersects": {
"description": "Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in DE-9IM.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"geoOverlaps": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in DE-9IM.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"geoTouches": {
"description": "Represents spatial relations in which two geometries (or the places they represent) touch: they have at least one boundary point in common, but no interior points.\" (a symmetric relationship, as defined in DE-9IM )",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"geoWithin": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in DE-9IM.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"globalLocationNumber": {
"description": "The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.",
"type": "string"
},
"hasMap": {
"description": "A URL to a map of the place.",
"items": {
"anyOf": [
{
"$ref": "Map.schema.json"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"isAccessibleForFree": {
"description": "A flag to signal that the item, event, or place is accessible for free.",
"type": "boolean"
},
"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"
},
"latitude": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The latitude of a location. For example 37.42242 (WGS 84)."
},
"logo": {
"description": "An associated logo.",
"items": {
"anyOf": [
{
"$ref": "ImageObject.schema.json"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"longitude": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The longitude of a location. For example -122.08585 (WGS 84)."
},
"map": {
"description": "A URL to a map of the place.",
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
},
"maps": {
"description": "A URL to a map of the place.",
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
},
"maximumAttendeeCapacity": {
"description": "The total number of individuals that may attend an event or venue.",
"type": "integer"
},
"openingHoursSpecification": {
"$ref": "OpeningHoursSpecification.schema.json",
"description": "The opening hours of a certain place."
},
"photo": {
"description": "A photograph of this place.",
"items": {
"anyOf": [
{
"$ref": "ImageObject.schema.json"
},
{
"$ref": "Photograph.schema.json"
}
]
},
"type": "array"
},
"photos": {
"description": "Photographs of this place.",
"items": {
"anyOf": [
{
"$ref": "ImageObject.schema.json"
},
{
"$ref": "Photograph.schema.json"
}
]
},
"type": "array"
},
"publicAccess": {
"description": "A flag to signal that the Place is open to public visitors. If this property is omitted there is no assumed default boolean value",
"type": "boolean"
},
"review": {
"description": "A review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"reviews": {
"description": "Review of the item.",
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
},
"slogan": {
"description": "A slogan or motto associated with the item.",
"items": {
"type": "string"
},
"type": "array"
},
"smokingAllowed": {
"description": "Indicates whether it is allowed to smoke in the place, e.g. in the restaurant, hotel or hotel room.",
"type": "boolean"
},
"specialOpeningHoursSpecification": {
"$ref": "OpeningHoursSpecification.schema.json",
"description": "The special opening hours of a certain place.\n\nUse this to explicitly override general opening hours brought in scope by openingHoursSpecification or openingHours."
},
"telephone": {
"description": "The telephone number.",
"type": "string"
}
},
"title": "Place",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/FollowAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/FollowAction",
"$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 forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.\n\nRelated actions:\n\n\nBefriendAction: Unlike BefriendAction, FollowAction implies that the connection is not necessarily reciprocal.\nSubscribeAction: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.\nRegisterAction: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.\nJoinAction: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.\nTrackAction: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don't follow it).\n\n",
"format": "http://schema.org/FollowAction",
"properties": {
"followee": {
"description": "A sub property of object. The person or organization being followed.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
}
},
"title": "FollowAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | 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": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "PayAction"
},
"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": "PayAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/UserTweets.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:UserTweets",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:UserInteraction",
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]]."
}
],
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].",
"title": "UserTweets",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/GasStation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/GasStation",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AutomotiveBusiness.schema.json",
"description": "Car repair, sales, or parts."
}
],
"description": "A gas station.",
"format": "http://schema.org/GasStation",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "GasStation"
}
},
"required": [
"@type"
],
"title": "GasStation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Synagogue.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Synagogue",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:PlaceOfWorship",
"description": "Place of worship, such as a church, synagogue, or mosque."
}
],
"description": "A synagogue.",
"title": "Synagogue",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/AccountingService.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AccountingService",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/FinancialService",
"description": "Financial services business."
}
],
"description": "Accountancy business.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s).",
"title": "AccountingService",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/MovieSeries.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MovieSeries",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWorkSeries.schema.json",
"description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike ItemList which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\n\nSpecific subtypes are available for describing TVSeries, RadioSeries, MovieSeries, BookSeries, Periodical and VideoGameSeries. In each case, the hasPart / isPartOf properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\n\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate."
}
],
"description": "A series of movies. Included movies can be indicated with the hasPart property.",
"format": "http://schema.org/MovieSeries",
"properties": {
"actor": {
"description": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"actors": {
"description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"director": {
"$ref": "Person.schema.json",
"description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip."
},
"directors": {
"description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"musicBy": {
"anyOf": [
{
"$ref": "MusicGroup.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The composer of the soundtrack."
},
"productionCompany": {
"$ref": "Organization.schema.json",
"description": "The production company or studio responsible for the item e.g. series, video game, episode etc."
},
"trailer": {
"$ref": "VideoObject.schema.json",
"description": "The trailer of a movie or tv/radio series, season, episode, etc."
}
},
"title": "MovieSeries",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/PostalAddress.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PostalAddress",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/ContactPoint",
"description": "A contact point\u2014for example, a Customer Complaints department."
}
],
"description": "The mailing address.",
"format": "http://schema.org/PostalAddress",
"properties": {
"addressCountry": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/Country"
}
],
"description": "The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code."
},
"addressLocality": {
"description": "The locality in which the street address is, and which is in the region. For example, Mountain View.",
"type": "string"
},
"addressRegion": {
"description": "The region in which the locality is, and which is in the country. For example, California or another appropriate first-level Administrative division",
"type": "string"
},
"postOfficeBoxNumber": {
"description": "The post office box number for PO box addresses.",
"type": "string"
},
"postalCode": {
"description": "The postal code. For example, 94043.",
"type": "string"
},
"streetAddress": {
"description": "The street address. For example, 1600 Amphitheatre Pkwy.",
"type": "string"
}
},
"title": "PostalAddress",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/HVACBusiness.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HVACBusiness",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "HomeAndConstructionBusiness.schema.json",
"description": "A construction business.\n\nA HomeAndConstructionBusiness is a LocalBusiness that provides services around homes and buildings.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s)."
}
],
"description": "A business that provide Heating, Ventilation and Air Conditioning services.",
"format": "http://schema.org/HVACBusiness",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "HVACBusiness"
}
},
"required": [
"@type"
],
"title": "HVACBusiness",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/ReplyAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ReplyAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CommunicateAction.schema.json",
"description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation."
}
],
"description": "The act of responding to a question/message asked/sent by the object. Related to AskAction\n\nRelated actions:\n\n\nAskAction: Appears generally as an origin of a ReplyAction.\n\n",
"format": "http://schema.org/ReplyAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ReplyAction"
},
"resultComment": {
"description": "A sub property of result. The Comment created or sent as a result of this action.",
"oneOf": [
{
"$ref": "Comment.schema.json"
},
{
"items": {
"$ref": "Comment.schema.json"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "ReplyAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/AuthorizeAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AuthorizeAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AllocateAction.schema.json",
"description": "The act of organizing tasks/objects/events by associating resources to it."
}
],
"description": "The act of granting permission to an object.",
"format": "http://schema.org/AuthorizeAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "AuthorizeAction"
},
"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": "AuthorizeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/FurnitureStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/FurnitureStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Store",
"description": "A retail good store."
}
],
"description": "A furniture store.",
"format": "http://schema.org/FurnitureStore",
"title": "FurnitureStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Library.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Library",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/LocalBusiness",
"description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc."
}
],
"description": "A library.",
"title": "Library",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/WantAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WantAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/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/ShareAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:ShareAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:CommunicateAction",
"description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation."
}
],
"description": "The act of distributing content to people for their amusement or edification.",
"title": "ShareAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/MoneyTransfer.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:MoneyTransfer",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:TransferAction",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another."
}
],
"description": "The act of transferring money from one place to another place. This may occur electronically or physically.",
"properties": {
"amount": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "schema:MonetaryAmount"
}
],
"description": "The amount of money."
},
"beneficiaryBank": {
"description": "A bank or bank\u2019s branch, financial institution or international financial institution operating the beneficiary\u2019s bank account or releasing funds for the beneficiary.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:BankOrCreditUnion"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:BankOrCreditUnion"
}
]
},
"type": "array"
}
]
}
},
"title": "MoneyTransfer",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/BorrowAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BorrowAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/TransferAction",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another."
}
],
"description": "The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.\n\nRelated actions:\n\n\nLendAction: Reciprocal of BorrowAction.\n\n",
"format": "http://schema.org/BorrowAction",
"properties": {
"lender": {
"description": "A sub property of participant. The person that lends the object being borrowed.",
"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"
}
]
}
},
"title": "BorrowAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/School.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/School",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/EducationalOrganization",
"description": "An educational organization."
}
],
"description": "A school.",
"title": "School",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | 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": {
"oneOf": [
{
"$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 | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/TVEpisode.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:TVEpisode",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Episode",
"description": "A media episode (e.g. TV, radio, video game) which can be part of a series or season."
}
],
"description": "A TV episode which can be part of a series or season.",
"properties": {
"countryOfOrigin": {
"$ref": "schema:Country",
"description": "The country of origin of something, including products as well as creative works such as movie and TV content.\n\nIn the case of TV and movie, this would be the country of the principle offices of the production company or individual responsible for the movie. For other kinds of [[CreativeWork]] it is difficult to provide fully general guidance, and properties such as [[contentLocation]] and [[locationCreated]] may be more applicable.\n\nIn the case of products, the country of origin of the product. The exact interpretation of this may vary by context and product type, and cannot be fully enumerated here."
},
"partOfTVSeries": {
"$ref": "schema:TVSeries",
"description": "The TV series to which this episode or season belongs."
},
"subtitleLanguage": {
"description": "Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47).",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:Language"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:Language"
}
]
},
"type": "array"
}
]
},
"titleEIDR": {
"description": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing at the most general/abstract level, a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" has a titleEIDR of \"10.5240/7EC7-228A-510A-053E-CBB8-J\". This title (or work) may have several variants, which EIDR calls \"edits\". See [[editEIDR]].\n\nSince schema.org types like [[Movie]] and [[TVEpisode]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
}
},
"title": "TVEpisode",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/CancelAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CancelAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PlanAction.schema.json",
"description": "The act of planning the execution of an event/task/action/reservation/plan to a future date."
}
],
"description": "The act of asserting that a future event/action is no longer going to happen.\n\nRelated actions:\n\n\nConfirmAction: The antonym of CancelAction.\n\n",
"format": "http://schema.org/CancelAction",
"title": "CancelAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/Integer.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Integer",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Number.schema.json",
"description": "Data type: Number.\n\nUsage guidelines:\n\n\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n"
}
],
"description": "Data type: Integer.",
"format": "http://schema.org/Integer",
"title": "Integer",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/DataCatalog.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DataCatalog",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A collection of datasets.",
"format": "http://schema.org/DataCatalog",
"properties": {
"dataset": {
"description": "A dataset contained in this catalog.",
"oneOf": [
{
"$ref": "Dataset.schema.json"
},
{
"items": {
"$ref": "Dataset.schema.json"
},
"type": "array"
}
]
}
},
"title": "DataCatalog",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/PublicationEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PublicationEvent",
"$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": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.",
"format": "http://schema.org/PublicationEvent",
"properties": {
"free": {
"description": "A flag to signal that the item, event, or place is accessible for free.",
"type": "boolean"
},
"isAccessibleForFree": {
"description": "A flag to signal that the item, event, or place is accessible for free.",
"type": "boolean"
},
"publishedOn": {
"description": "A broadcast service associated with the publication event.",
"items": {
"$ref": "BroadcastService.schema.json"
},
"type": "array"
}
},
"title": "PublicationEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Volcano.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Volcano",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Landform",
"description": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins."
}
],
"description": "A volcano, like Fuji san.",
"title": "Volcano",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 836707371bd5157a43e93dd1653717a7f932db13 | 2020-05-11T23:21:31 | 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": "Thing.schema.json",
"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.",
"format": "http://schema.org/Text"
},
"address": {
"$ref": "PostalAddress.schema.json",
"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.",
"items": {
"$ref": "Organization.schema.json"
},
"type": "array"
},
"alumniOf": {
"description": "An organization that the person is an alumni of.",
"items": {
"oneOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "EducationalOrganization.schema.json"
}
]
},
"type": "array"
},
"award": {
"description": "An award won by or for this item.",
"format": "http://schema.org/Text"
},
"awards": {
"description": "Awards won by or for this item.",
"format": "http://schema.org/Text"
},
"birthDate": {
"description": "Date of birth.",
"format": "http://schema.org/Date"
},
"birthPlace": {
"$ref": "Place.schema.json",
"description": "The place where the person was born."
},
"brand": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Brand.schema.json"
}
],
"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.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"colleague": {
"description": "A colleague of the person.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"colleagues": {
"description": "A colleague of the person.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"contactPoint": {
"description": "A contact point for a person or organization.",
"items": {
"$ref": "ContactPoint.schema.json"
},
"type": "array"
},
"contactPoints": {
"description": "A contact point for a person or organization.",
"items": {
"$ref": "ContactPoint.schema.json"
},
"type": "array"
},
"deathDate": {
"description": "Date of death.",
"format": "http://schema.org/Date"
},
"deathPlace": {
"$ref": "Place.schema.json",
"description": "The place where the person died."
},
"duns": {
"description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
"format": "http://schema.org/Text"
},
"email": {
"description": "Email address.",
"format": "http://schema.org/Text"
},
"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.",
"format": "http://schema.org/Text"
},
"faxNumber": {
"description": "The fax number.",
"format": "http://schema.org/Text"
},
"follows": {
"description": "The most generic uni-directional social relation.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"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.",
"format": "http://schema.org/Text"
},
"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.",
"format": "http://schema.org/Text"
},
"hasOccupation": {
"$ref": "Occupation.schema.json",
"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.",
"items": {
"$ref": "OfferCatalog.schema.json"
},
"type": "array"
},
"hasPOS": {
"description": "Points-of-Sales operated by the organization or person.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"height": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The height of the item."
},
"homeLocation": {
"description": "A contact location for a person's residence.",
"items": {
"oneOf": [
{
"$ref": "Place.schema.json"
},
{
"$ref": "ContactPoint.schema.json"
}
]
},
"type": "array"
},
"honorificPrefix": {
"description": "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.",
"format": "http://schema.org/Text"
},
"honorificSuffix": {
"description": "An honorific suffix preceding a Person's name such as M.D. /PhD/MSCSW.",
"format": "http://schema.org/Text"
},
"interactionStatistic": {
"$ref": "InteractionCounter.schema.json",
"description": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used."
},
"isicV4": {
"description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
"format": "http://schema.org/Text"
},
"knows": {
"$ref": "Person.schema.json",
"description": "The most generic bi-directional social/work relation."
},
"makesOffer": {
"description": "A pointer to products or services offered by the organization or person.",
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
},
"memberOf": {
"description": "An Organization (or ProgramMembership) to which this Person or Organization belongs.",
"items": {
"oneOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "ProgramMembership.schema.json"
}
]
},
"type": "array"
},
"naics": {
"description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
"format": "http://schema.org/Text"
},
"nationality": {
"description": "Nationality of the person.",
"items": {
"$ref": "Country.schema.json"
},
"type": "array"
},
"netWorth": {
"anyOf": [
{
"$ref": "PriceSpecification.schema.json"
},
{
"$ref": "MonetaryAmount.schema.json"
}
],
"description": "The total financial value of the person as calculated by subtracting assets from liabilities."
},
"owns": {
"description": "Products owned by the organization or person.",
"items": {
"oneOf": [
{
"$ref": "OwnershipInfo.schema.json"
},
{
"$ref": "Product.schema.json"
}
]
},
"type": "array"
},
"parent": {
"description": "A parent of this person.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"parents": {
"description": "A parents of the person.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"performerIn": {
"description": "Event that this person is a performer or participant in.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
},
"publishingPrinciples": {
"anyOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"format": "uri",
"type": "string"
}
],
"description": "The publishingPrinciples property indicates (typically via URL) a document describing the editorial principles of an Organization (or individual e.g. a Person writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a CreativeWork (e.g. NewsArticle) the principles are those of the party primarily responsible for the creation of the CreativeWork.\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a funder) can be expressed using schema.org terminology."
},
"relatedTo": {
"$ref": "Person.schema.json",
"description": "The most generic familial relation."
},
"seeks": {
"description": "A pointer to products or services sought by the organization or person (demand).",
"items": {
"$ref": "Demand.schema.json"
},
"type": "array"
},
"sibling": {
"description": "A sibling of the person.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"siblings": {
"description": "A sibling of the person.",
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
},
"sponsor": {
"description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
"items": {
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"$ref": "Organization.schema.json"
}
]
},
"type": "array"
},
"spouse": {
"$ref": "Person.schema.json",
"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.",
"format": "http://schema.org/Text"
},
"telephone": {
"description": "The telephone number.",
"format": "http://schema.org/Text"
},
"vatID": {
"description": "The Value-added Tax ID of the organization or person.",
"format": "http://schema.org/Text"
},
"weight": {
"$ref": "QuantitativeValue.schema.json",
"description": "The weight of the product or person."
},
"workLocation": {
"description": "A contact location for a person's place of work.",
"items": {
"oneOf": [
{
"$ref": "Place.schema.json"
},
{
"$ref": "ContactPoint.schema.json"
}
]
},
"type": "array"
},
"worksFor": {
"description": "Organizations that the person works for.",
"items": {
"$ref": "Organization.schema.json"
},
"type": "array"
}
},
"title": "Person",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/RsvpResponseType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/RsvpResponseType",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.",
"format": "http://schema.org/RsvpResponseType",
"oneOf": [
{
"const": "RsvpResponseYes",
"description": "The invitee will attend."
},
{
"const": "RsvpResponseMaybe",
"description": "The invitee may or may not attend."
},
{
"const": "RsvpResponseNo",
"description": "The invitee will not attend."
}
],
"title": "RsvpResponseType",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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/Question.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Question",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.",
"format": "http://schema.org/Question",
"properties": {
"acceptedAnswer": {
"anyOf": [
{
"$ref": "ItemList.schema.json"
},
{
"$ref": "Answer.schema.json"
}
],
"description": "The answer(s) that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author."
},
"answerCount": {
"description": "The number of answers this question has received.",
"type": "integer"
},
"downvoteCount": {
"description": "The number of downvotes this question, answer or comment has received from the community.",
"type": "integer"
},
"suggestedAnswer": {
"description": "An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.",
"items": {
"oneOf": [
{
"$ref": "ItemList.schema.json"
},
{
"$ref": "Answer.schema.json"
}
]
},
"type": "array"
},
"upvoteCount": {
"description": "The number of upvotes this question, answer or comment has received from the community.",
"type": "integer"
}
},
"title": "Question",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/MovieRentalStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MovieRentalStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A movie rental store.",
"format": "http://schema.org/MovieRentalStore",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "MovieRentalStore"
}
},
"required": [
"@type"
],
"title": "MovieRentalStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/PlaceOfWorship.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:PlaceOfWorship",
"$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": "Place of worship, such as a church, synagogue, or mosque.",
"title": "PlaceOfWorship",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/BoatTerminal.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:BoatTerminal",
"$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 terminal for boats, ships, and other water vessels.",
"title": "BoatTerminal",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/MortgageLoan.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:MortgageLoan",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:LoanOrCredit",
"description": "A financial product for the loaning of an amount of money, or line of credit, under agreed terms and charges."
}
],
"description": "A loan in which property or real estate is used as collateral. (A loan securitized against some real estate).",
"properties": {
"domiciledMortgage": {
"description": "Whether borrower is a resident of the jurisdiction where the property is located.",
"type": "boolean"
},
"loanMortgageMandateAmount": {
"description": "Amount of mortgage mandate that can be converted into a proper mortgage at a later stage.",
"oneOf": [
{
"$ref": "schema:MonetaryAmount"
},
{
"items": {
"$ref": "schema:MonetaryAmount"
},
"type": "array"
}
]
}
},
"title": "MortgageLoan",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Occupation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Occupation",
"$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 profession, may involve prolonged training and/or a formal qualification.",
"format": "http://schema.org/Occupation",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Occupation"
},
"estimatedSalary": {
"description": "An estimated salary for a job posting or occupation, based on a variety of variables including, but not limited to industry, job title, and location. Estimated salaries are often computed by outside organizations rather than the hiring organization, who may not have committed to the estimated value.",
"items": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "MonetaryAmount.schema.json"
},
{
"$ref": "MonetaryAmountDistribution.schema.json"
}
]
},
"type": "array"
},
"experienceRequirements": {
"description": "Description of skills and experience needed for the position or Occupation.",
"type": "string"
},
"occupationLocation": {
"$ref": "AdministrativeArea.schema.json",
"description": "The region/country for which this occupational description is appropriate. Note that educational requirements and qualifications can vary between jurisdictions."
},
"responsibilities": {
"description": "Responsibilities associated with this role or Occupation.",
"items": {
"type": "string"
},
"type": "array"
},
"skills": {
"description": "A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "Occupation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/MarryAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MarryAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "InteractAction.schema.json",
"description": "The act of interacting with another person or organization."
}
],
"description": "The act of marrying a person.",
"format": "http://schema.org/MarryAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "MarryAction"
}
},
"required": [
"@type"
],
"title": "MarryAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | schemas/ContactPoint.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ContactPoint",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "StructuredValue.schema.json",
"description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing."
}
],
"description": "A contact point\u2014for example, a Customer Complaints department.",
"format": "http://schema.org/ContactPoint",
"properties": {
"areaServed": {
"anyOf": [
{
"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",
"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).",
"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.",
"items": {
"type": "string"
},
"type": "array"
},
"email": {
"description": "Email address.",
"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"
}
},
"title": "ContactPoint",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | 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": "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": "Used to describe a seat, such as a reserved seat in an event reservation.",
"format": "http://schema.org/Seat",
"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": [
{
"$ref": "QualitativeValue.schema.json"
},
{
"type": "string"
}
],
"description": "The type/class of the seat."
}
},
"title": "Seat",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/VideoGallery.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/VideoGallery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/MediaGallery",
"description": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia."
}
],
"description": "Web page type: Video gallery page.",
"title": "VideoGallery",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Specialty.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Specialty",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.",
"title": "Specialty",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/WebPage.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:WebPage",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:CreativeWork",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A web page. 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.",
"properties": {
"breadcrumb": {
"description": "A set of links that can help a user understand and navigate a website hierarchy.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:BreadcrumbList"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:BreadcrumbList"
}
]
},
"type": "array"
}
]
},
"lastReviewed": {
"description": "Date on which the content on this web page was last reviewed for accuracy and/or completeness.",
"format": "date",
"type": "string"
},
"mainContentOfPage": {
"$ref": "schema:WebPageElement",
"description": "Indicates if this web page element is the main subject of the page."
},
"primaryImageOfPage": {
"$ref": "schema:ImageObject",
"description": "Indicates the main image on the page."
},
"relatedLink": {
"description": "A link related to this web page, for example to other related web pages.",
"oneOf": [
{
"format": "uri",
"type": "string"
},
{
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
}
]
},
"reviewedBy": {
"description": "People or organizations that have reviewed the content on this web page for accuracy and/or completeness.",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
"type": "array"
}
]
},
"significantLink": {
"description": "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
"oneOf": [
{
"format": "uri",
"type": "string"
},
{
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
}
]
},
"significantLinks": {
"description": "The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
"format": "uri",
"type": "string"
},
"speakable": {
"description": "Indicates sections of a Web page that are particularly 'speakable' in the sense of being highlighted as being especially appropriate for text-to-speech conversion. Other sections of a page may also be usefully spoken in particular circumstances; the 'speakable' property serves to indicate the parts most likely to be generally useful for speech.\n\nThe *speakable* property can be repeated an arbitrary number of times, with three kinds of possible 'content-locator' values:\n\n1.) *id-value* URL references - uses *id-value* of an element in the page being annotated. The simplest use of *speakable* has (potentially relative) URL values, referencing identified sections of the document concerned.\n\n2.) CSS Selectors - addresses content in the annotated page, eg. via class attribute. Use the [[cssSelector]] property.\n\n3.) XPaths - addresses content via XPaths (assuming an XML view of the content). Use the [[xpath]] property.\n\n\nFor more sophisticated markup of speakable sections beyond simple ID references, either CSS selectors or XPath expressions to pick out document section(s) as speakable. For this\nwe define a supporting type, [[SpeakableSpecification]] which is defined to be a possible value of the *speakable* property.\n ",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:SpeakableSpecification"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:SpeakableSpecification"
}
]
},
"type": "array"
}
]
},
"specialty": {
"description": "One of the domain specialities to which this web page's content applies.",
"oneOf": [
{
"$ref": "schema:Specialty"
},
{
"items": {
"$ref": "schema:Specialty"
},
"type": "array"
}
]
}
},
"title": "WebPage",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Permit.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Permit",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Intangible",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A permit issued by an organization, e.g. a parking pass.",
"properties": {
"issuedBy": {
"$ref": "schema:Organization",
"description": "The organization issuing the ticket or permit."
},
"issuedThrough": {
"$ref": "schema:Service",
"description": "The service through with the permit was granted."
},
"permitAudience": {
"$ref": "schema:Audience",
"description": "The target audience for this permit."
},
"validFor": {
"$comment": "https://schema.org/Duration",
"description": "The duration of validity of a permit or similar thing.",
"type": "string"
},
"validFrom": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date when the item becomes valid."
},
"validIn": {
"$ref": "schema:AdministrativeArea",
"description": "The geographic area where a permit or similar thing is valid."
},
"validUntil": {
"description": "The date when the item is no longer valid.",
"format": "date",
"type": "string"
}
},
"title": "Permit",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/PublicationEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PublicationEvent",
"$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": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.",
"format": "http://schema.org/PublicationEvent",
"properties": {
"free": {
"description": "A flag to signal that the item, event, or place is accessible for free.",
"type": "boolean"
},
"isAccessibleForFree": {
"description": "A flag to signal that the item, event, or place is accessible for free.",
"type": "boolean"
},
"publishedOn": {
"description": "A broadcast service associated with the publication event.",
"oneOf": [
{
"$ref": "BroadcastService.schema.json"
},
{
"items": {
"$ref": "BroadcastService.schema.json"
},
"type": "array"
}
]
}
},
"title": "PublicationEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c | 2020-05-13T21:31:46 | schemas/TaxiReservation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TaxiReservation",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Reservation.schema.json",
"description": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use Offer."
}
],
"description": "A reservation for a taxi.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use Offer.",
"format": "http://schema.org/TaxiReservation",
"properties": {
"partySize": {
"description": "Number of people the reservation should accommodate.",
"items": {
"anyOf": [
{
"type": "integer"
},
{
"$ref": "QuantitativeValue.schema.json"
}
]
},
"type": "array"
},
"pickupLocation": {
"description": "Where a taxi will pick up a passenger or a rental car can be picked up.",
"items": {
"$ref": "Place.schema.json"
},
"type": "array"
},
"pickupTime": {
"description": "When a taxi will pickup a passenger or a rental car can be picked up.",
"items": {
"format": "date-time",
"type": "string"
},
"type": "array"
}
},
"title": "TaxiReservation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/ReplaceAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ReplaceAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "UpdateAction.schema.json",
"description": "The act of managing by changing/editing the state of the object."
}
],
"description": "The act of editing a recipient by replacing an old object with a new object.",
"format": "http://schema.org/ReplaceAction",
"properties": {
"replacee": {
"description": "A sub property of object. The object that is being replaced.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
},
"replacer": {
"description": "A sub property of object. The object that replaces.",
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
}
},
"title": "ReplaceAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Demand.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Demand",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Intangible.schema.json",
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."
}
],
"description": "A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.",
"format": "http://schema.org/Demand",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Demand"
},
"acceptedPaymentMethod": {
"anyOf": [
{
"$ref": "LoanOrCredit.schema.json"
},
{
"$ref": "PaymentMethod.schema.json"
}
],
"description": "The payment method(s) accepted by seller for this offer."
},
"advanceBookingRequirement": {
"$ref": "QuantitativeValue.schema.json",
"description": "The amount of time that is required between accepting the offer and the actual usage of the resource or service."
},
"areaServed": {
"anyOf": [
{
"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."
},
"availability": {
"$ref": "ItemAvailability.schema.json",
"description": "The availability of this item\u2014for example In stock, Out of stock, Pre-order, etc."
},
"availabilityEnds": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The end of the availability of the product or service included in the offer."
},
"availabilityStarts": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The beginning of the availability of the product or service included in the offer."
},
"availableAtOrFrom": {
"$ref": "Place.schema.json",
"description": "The place(s) from which the offer can be obtained (e.g. store locations)."
},
"availableDeliveryMethod": {
"$ref": "DeliveryMethod.schema.json",
"description": "The delivery method(s) available for this offer."
},
"businessFunction": {
"$ref": "BusinessFunction.schema.json",
"description": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell."
},
"deliveryLeadTime": {
"$ref": "QuantitativeValue.schema.json",
"description": "The typical delay between the receipt of the order and the goods either leaving the warehouse or being prepared for pickup, in case the delivery method is on site pickup."
},
"eligibleCustomerType": {
"$ref": "BusinessEntityType.schema.json",
"description": "The type(s) of customers for which the given offer is valid."
},
"eligibleDuration": {
"$ref": "QuantitativeValue.schema.json",
"description": "The duration for which the given offer is valid."
},
"eligibleQuantity": {
"$ref": "QuantitativeValue.schema.json",
"description": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity."
},
"eligibleRegion": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "GeoShape.schema.json"
},
{
"$ref": "Place.schema.json"
}
],
"description": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, the place, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\n\nSee also ineligibleRegion."
},
"eligibleTransactionVolume": {
"$ref": "PriceSpecification.schema.json",
"description": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount."
},
"gtin12": {
"description": "The GTIN-12 code of the product, or the product to which the offer refers. The GTIN-12 is the 12-digit GS1 Identification Key composed of a U.P.C. Company Prefix, Item Reference, and Check Digit used to identify trade items. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin13": {
"description": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin14": {
"description": "The GTIN-14 code of the product, or the product to which the offer refers. See GS1 GTIN Summary for more details.",
"type": "string"
},
"gtin8": {
"description": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN. See GS1 GTIN Summary for more details.",
"type": "string"
},
"includesObject": {
"description": "This links to a node or nodes indicating the exact quantity of the products included in the offer.",
"items": {
"$ref": "TypeAndQuantityNode.schema.json"
},
"type": "array"
},
"inventoryLevel": {
"$ref": "QuantitativeValue.schema.json",
"description": "The current approximate inventory level for the item or items."
},
"itemCondition": {
"description": "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.",
"items": {
"$ref": "OfferItemCondition.schema.json"
},
"type": "array"
},
"itemOffered": {
"anyOf": [
{
"$ref": "AggregateOffer.schema.json"
},
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "Event.schema.json"
},
{
"$ref": "MenuItem.schema.json"
},
{
"$ref": "Product.schema.json"
},
{
"$ref": "Service.schema.json"
},
{
"$ref": "Trip.schema.json"
}
],
"description": "An item being offered (or demanded). The transactional nature of the offer or demand is documented using businessFunction, e.g. sell, lease etc. While several common expected types are listed explicitly in this definition, others can be used. Using a second type, such as Product or a subtype of Product, can clarify the nature of the offer."
},
"mpn": {
"description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
"type": "string"
},
"priceSpecification": {
"description": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.",
"items": {
"$ref": "PriceSpecification.schema.json"
},
"type": "array"
},
"seller": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider."
},
"serialNumber": {
"description": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
"type": "string"
},
"sku": {
"description": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
"type": "string"
},
"validFrom": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date when the item becomes valid."
},
"validThrough": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours."
},
"warranty": {
"$ref": "WarrantyPromise.schema.json",
"description": "The warranty promise(s) included in the offer."
}
},
"required": [
"@type"
],
"title": "Demand",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | schemas/CreditCard.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/CreditCard",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "LoanOrCredit.schema.json",
"description": "A financial product for the loaning of an amount of money under agreed terms and charges."
},
{
"$ref": "PaymentCard.schema.json",
"description": "A payment method using a credit, debit, store or other card to associate the payment with an account."
}
],
"description": "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\n\nCommonly used values:\n\n\nhttp://purl.org/goodrelations/v1#AmericanExpress\nhttp://purl.org/goodrelations/v1#DinersClub\nhttp://purl.org/goodrelations/v1#Discover\nhttp://purl.org/goodrelations/v1#JCB\nhttp://purl.org/goodrelations/v1#MasterCard\nhttp://purl.org/goodrelations/v1#VISA\n\n",
"format": "http://schema.org/CreditCard",
"title": "CreditCard",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Residence.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Residence",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Place",
"description": "Entities that have a somewhat fixed, physical extension."
}
],
"description": "The place where a person lives.",
"properties": {
"accommodationFloorPlan": {
"description": "A floorplan of some [[Accommodation]].",
"oneOf": [
{
"$ref": "schema:FloorPlan"
},
{
"items": {
"$ref": "schema:FloorPlan"
},
"type": "array"
}
]
}
},
"title": "Residence",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | 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 | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/AssessAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AssessAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Action.schema.json",
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document."
}
],
"description": "The act of forming one's opinion, reaction or sentiment.",
"format": "http://schema.org/AssessAction",
"title": "AssessAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c | 2020-05-13T21:31:46 | schemas/Thing.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Thing",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "The most generic type of item.",
"format": "http://schema.org/Thing",
"properties": {
"additionalType": {
"description": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.",
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
},
"alternateName": {
"description": "An alias for the item.",
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"description": "A description of the item.",
"items": {
"type": "string"
},
"type": "array"
},
"disambiguatingDescription": {
"description": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.",
"items": {
"type": "string"
},
"type": "array"
},
"identifier": {
"anyOf": [
{
"$ref": "PropertyValue.schema.json"
},
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
],
"description": "The identifier property represents any kind of identifier for any kind of Thing, such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See background notes for more details."
},
"image": {
"description": "An image of the item. This can be a URL or a fully described ImageObject.",
"items": {
"anyOf": [
{
"$ref": "ImageObject.schema.json"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"mainEntityOfPage": {
"description": "Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See background notes for details.",
"items": {
"anyOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"name": {
"description": "The name of the item.",
"type": "string"
},
"potentialAction": {
"description": "Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.",
"items": {
"$ref": "Action.schema.json"
},
"type": "array"
},
"sameAs": {
"description": "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.",
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
},
"subjectOf": {
"description": "A CreativeWork or Event about this Thing.",
"items": {
"anyOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "Event.schema.json"
}
]
},
"type": "array"
},
"url": {
"description": "URL of the item.",
"format": "uri",
"type": "string"
}
},
"title": "Thing",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/GeoCircle.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:GeoCircle",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema: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'.\n ",
"properties": {
"geoMidpoint": {
"description": "Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle.",
"oneOf": [
{
"$ref": "schema:GeoCoordinates"
},
{
"items": {
"$ref": "schema:GeoCoordinates"
},
"type": "array"
}
]
},
"geoRadius": {
"description": "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).",
"oneOf": [
{
"anyOf": [
{
"type": "number"
},
{
"$comment": "https://schema.org/Distance",
"type": "string"
},
{
"type": "string"
}
]
},
{
"items": {
"anyOf": [
{
"type": "number"
},
{
"$comment": "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/FurnitureStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/FurnitureStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A furniture store.",
"format": "http://schema.org/FurnitureStore",
"title": "FurnitureStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | 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": "ListItem.schema.json",
"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.",
"format": "http://schema.org/HowToItem",
"properties": {
"requiredQuantity": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"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/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": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "HowTo"
},
"estimatedCost": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "MonetaryAmount.schema.json"
}
],
"description": "The estimated cost of the supply or supplies consumed when performing instructions."
},
"performTime": {
"description": "The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"prepTime": {
"description": "The length of time it takes to prepare the items to be used in instructions or a direction, in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"step": {
"description": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$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": {
"anyOf": [
{
"type": "string"
},
{
"$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": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "HowToSupply.schema.json"
}
]
},
"type": "array"
},
"tool": {
"description": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "HowToTool.schema.json"
}
]
},
"type": "array"
},
"totalTime": {
"description": "The total time required to perform instructions or a direction (including time to prepare the supplies), in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"yield": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles."
}
},
"required": [
"@type"
],
"title": "HowTo",
"type": "object"
} | Apache-2.0 | en |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.