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/JoinAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/JoinAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "InteractAction.schema.json",
"description": "The act of interacting with another person or organization."
}
],
"description": "An agent joins an event/group with participants/friends at a location.\n\nRelated actions:\n\n\nRegisterAction: Unlike RegisterAction, JoinAction refers to joining a group/team of people.\nSubscribeAction: Unlike SubscribeAction, JoinAction does not imply that you'll be receiving updates.\nFollowAction: Unlike FollowAction, JoinAction does not imply that you'll be polling for updates.\n\n",
"format": "http://schema.org/JoinAction",
"properties": {
"event": {
"description": "Upcoming or past event associated with this place, organization, or action.",
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
},
"title": "JoinAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c | 2020-05-13T21:31:46 | schemas/ApartmentComplex.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ApartmentComplex",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Residence.schema.json",
"description": "The place where a person lives."
}
],
"description": "Residence type: Apartment complex.",
"format": "http://schema.org/ApartmentComplex",
"properties": {
"petsAllowed": {
"description": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "boolean"
}
]
},
"type": "array"
}
},
"title": "ApartmentComplex",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/TipAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TipAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "TradeAction.schema.json",
"description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment."
}
],
"description": "The act of giving money voluntarily to a beneficiary in recognition of services rendered.",
"format": "http://schema.org/TipAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "TipAction"
},
"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"
}
},
"required": [
"@type"
],
"title": "TipAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Drug.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Drug",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Substance",
"description": "Any matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical."
}
],
"description": "A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism. Here the term drug is used interchangeably with the term medicine although clinical knowledge make a clear difference between them.",
"properties": {
"activeIngredient": {
"description": "An active ingredient, typically chemical compounds and/or biologic substances.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"administrationRoute": {
"description": "A route by which this drug may be administered, e.g. 'oral'.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"alcoholWarning": {
"description": "Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.",
"type": "string"
},
"availableStrength": {
"description": "An available dosage strength for the drug.",
"oneOf": [
{
"$ref": "schema:DrugStrength"
},
{
"items": {
"$ref": "schema:DrugStrength"
},
"type": "array"
}
]
},
"breastfeedingWarning": {
"description": "Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.",
"type": "string"
},
"clincalPharmacology": {
"description": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).",
"type": "string"
},
"clinicalPharmacology": {
"description": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"dosageForm": {
"description": "A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"doseSchedule": {
"description": "A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.",
"oneOf": [
{
"$ref": "schema:DoseSchedule"
},
{
"items": {
"$ref": "schema:DoseSchedule"
},
"type": "array"
}
]
},
"drugClass": {
"$ref": "schema:DrugClass",
"description": "The class of drug this belongs to (e.g., statins)."
},
"drugUnit": {
"description": "The unit in which the drug is measured, e.g. '5 mg tablet'.",
"type": "string"
},
"foodWarning": {
"description": "Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.",
"type": "string"
},
"includedInHealthInsurancePlan": {
"$ref": "schema:HealthInsurancePlan",
"description": "The insurance plans that cover this drug."
},
"interactingDrug": {
"description": "Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.",
"oneOf": [
{
"$ref": "schema:Drug"
},
{
"items": {
"$ref": "schema:Drug"
},
"type": "array"
}
]
},
"isAvailableGenerically": {
"description": "True if the drug is available in a generic form (regardless of name).",
"type": "boolean"
},
"isProprietary": {
"description": "True if this item's name is a proprietary/brand name (vs. generic name).",
"type": "boolean"
},
"labelDetails": {
"description": "Link to the drug's label details.",
"format": "uri",
"type": "string"
},
"legalStatus": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:DrugLegalStatus"
},
{
"$ref": "schema:MedicalEnumeration"
}
],
"description": "The drug or supplement's legal status, including any controlled substance schedules that apply."
},
"manufacturer": {
"$ref": "schema:Organization",
"description": "The manufacturer of the product."
},
"maximumIntake": {
"$ref": "schema:MaximumDoseSchedule",
"description": "Recommended intake of this supplement for a given population as defined by a specific recommending authority."
},
"mechanismOfAction": {
"description": "The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.",
"type": "string"
},
"nonProprietaryName": {
"description": "The generic name of this drug or supplement.",
"type": "string"
},
"overdosage": {
"description": "Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.",
"type": "string"
},
"pregnancyCategory": {
"$ref": "schema:DrugPregnancyCategory",
"description": "Pregnancy category of this drug."
},
"pregnancyWarning": {
"description": "Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy.",
"type": "string"
},
"prescribingInfo": {
"description": "Link to prescribing information for the drug.",
"format": "uri",
"type": "string"
},
"prescriptionStatus": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:DrugPrescriptionStatus"
}
],
"description": "Indicates the status of drug prescription eg. local catalogs classifications or whether the drug is available by prescription or over-the-counter, etc."
},
"proprietaryName": {
"description": "Proprietary name given to the diet plan, typically by its originator or creator.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"relatedDrug": {
"description": "Any other drug related to this one, for example commonly-prescribed alternatives.",
"oneOf": [
{
"$ref": "schema:Drug"
},
{
"items": {
"$ref": "schema:Drug"
},
"type": "array"
}
]
},
"rxcui": {
"description": "The RxCUI drug identifier from RXNORM.",
"type": "string"
},
"warning": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "Any FDA or other warnings about the drug (text or URL)."
}
},
"title": "Drug",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | 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": "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 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.",
"items": {
"anyOf": [
{
"$ref": "ListItem.schema.json"
},
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
},
"itemListOrder": {
"anyOf": [
{
"$ref": "ItemListOrderType.schema.json"
},
{
"type": "string"
}
],
"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 | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/TakeAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:TakeAction",
"$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 gaining ownership of an object from an origin. Reciprocal of GiveAction.\\n\\nRelated actions:\\n\\n* [[GiveAction]]: The reciprocal of TakeAction.\\n* [[ReceiveAction]]: Unlike ReceiveAction, TakeAction implies that ownership has been transfered.",
"title": "TakeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | 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).",
"oneOf": [
{
"$ref": "Thing.schema.json"
},
{
"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.",
"oneOf": [
{
"$ref": "Thing.schema.json"
},
{
"items": {
"$ref": "Thing.schema.json"
},
"type": "array"
}
]
},
"gameLocation": {
"description": "Real or fictional location of the game (or part of game).",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
}
]
},
"type": "array"
}
]
},
"numberOfPlayers": {
"description": "Indicate how many people can play this game (minimum, maximum, or range).",
"oneOf": [
{
"$ref": "QuantitativeValue.schema.json"
},
{
"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 | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/RadioStation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:RadioStation",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:LocalBusiness",
"description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc."
}
],
"description": "A radio station.",
"title": "RadioStation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c | 2020-05-13T21:31:46 | schemas/VisualArtwork.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/VisualArtwork",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A work of art that is primarily visual in character.",
"format": "http://schema.org/VisualArtwork",
"properties": {
"artEdition": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "The number of copies when multiple copies of a piece of artwork are produced - e.g. for a limited edition of 20 prints, 'artEdition' refers to the total number of copies (in this example \"20\")."
},
"artMedium": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
],
"description": "The material used. (e.g. Oil, Watercolour, Acrylic, Linoprint, Marble, Cyanotype, Digital, Lithograph, DryPoint, Intaglio, Pastel, Woodcut, Pencil, Mixed Media, etc.)"
},
"artform": {
"description": "e.g. Painting, Drawing, Sculpture, Print, Photograph, Assemblage, Collage, etc.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"artworkSurface": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
],
"description": "The supporting materials for the artwork, e.g. Canvas, Paper, Wood, Board, etc."
},
"depth": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The depth of the item."
},
"height": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The height of the item."
},
"surface": {
"description": "A material used as a surface in some artwork, e.g. Canvas, Paper, Wood, Board, etc.",
"items": {
"anyOf": [
{
"type": "string"
},
{
"format": "uri",
"type": "string"
}
]
},
"type": "array"
},
"width": {
"anyOf": [
{
"format": "https://schema.org/Distance",
"type": "string"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The width of the item."
}
},
"title": "VisualArtwork",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Distillery.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Distillery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "FoodEstablishment.schema.json",
"description": "A food-related business."
}
],
"description": "A distillery.",
"format": "http://schema.org/Distillery",
"title": "Distillery",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Mosque.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Mosque",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/PlaceOfWorship",
"description": "Place of worship, such as a church, synagogue, or mosque."
}
],
"description": "A mosque.",
"title": "Mosque",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/BedDetails.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BedDetails",
"$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 entity holding detailed information about the available bed types, e.g. the quantity of twin beds for a hotel room. For the single case of just one bed of a certain type, you can use bed directly with a text. See also BedType (under development).",
"format": "http://schema.org/BedDetails",
"properties": {
"numberOfBeds": {
"description": "The quantity of the given bed type available in the HotelRoom, Suite, House, or Apartment.",
"format": "http://schema.org/Number"
},
"typeOfBed": {
"$ref": "BedType.schema.json",
"description": "The type of bed to which the BedDetail refers, i.e. the type of bed available in the quantity indicated by quantity."
}
},
"title": "BedDetails",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Clip.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Clip",
"$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 short TV or radio program or a segment/part of a program.",
"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": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
},
"actors": {
"description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
},
"clipNumber": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"description": "Position of the clip within an ordered group of clips."
},
"director": {
"$ref": "schema:Person",
"description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip."
},
"directors": {
"description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
},
"endOffset": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "schema:HyperTocEntry"
}
],
"description": "The end time of the clip expressed as the number of seconds from the beginning of the work."
},
"musicBy": {
"anyOf": [
{
"$ref": "schema:MusicGroup"
},
{
"$ref": "schema:Person"
}
],
"description": "The composer of the soundtrack."
},
"partOfEpisode": {
"$ref": "schema:Episode",
"description": "The episode to which this clip belongs."
},
"partOfSeason": {
"$ref": "schema:CreativeWorkSeason",
"description": "The season to which this episode belongs."
},
"partOfSeries": {
"$ref": "schema:CreativeWorkSeries",
"description": "The series to which this episode or season belongs."
},
"startOffset": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "schema:HyperTocEntry"
}
],
"description": "The start time of the clip expressed as the number of seconds from the beginning of the work."
}
},
"title": "Clip",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/LoanOrCredit.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LoanOrCredit",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "FinancialProduct.schema.json",
"description": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry."
}
],
"description": "A financial product for the loaning of an amount of money under agreed terms and charges.",
"format": "http://schema.org/LoanOrCredit",
"properties": {
"amount": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "MonetaryAmount.schema.json"
}
],
"description": "The amount of money."
},
"currency": {
"description": "The currency in which the monetary amount is expressed.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".",
"type": "string"
},
"loanTerm": {
"$ref": "QuantitativeValue.schema.json",
"description": "The duration of the loan or credit agreement."
},
"requiredCollateral": {
"description": "Assets required to secure loan or credit repayments. It may take form of third party pledge, goods, financial instruments (cash, securities, etc.)",
"items": {
"oneOf": [
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
}
},
"title": "LoanOrCredit",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/AssignAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:AssignAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:AllocateAction",
"description": "The act of organizing tasks/objects/events by associating resources to it."
}
],
"description": "The act of allocating an action/event/task to some destination (someone or something).",
"title": "AssignAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/HowToDirection.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HowToDirection",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CreativeWork",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
},
{
"$ref": "http://schema.org/ListItem",
"description": "An list item, e.g. a step in a checklist or how-to description."
}
],
"description": "A direction indicating a single action to do in the instructions for how to achieve a result.",
"format": "http://schema.org/HowToDirection",
"properties": {
"afterMedia": {
"description": "A media object representing the circumstances after performing this direction.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/MediaObject"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/MediaObject"
}
]
},
"type": "array"
}
]
},
"beforeMedia": {
"description": "A media object representing the circumstances before performing this direction.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/MediaObject"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/MediaObject"
}
]
},
"type": "array"
}
]
},
"duringMedia": {
"description": "A media object representing the circumstances while performing this direction.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/MediaObject"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/MediaObject"
}
]
},
"type": "array"
}
]
},
"performTime": {
"description": "The length of time it takes to perform instructions or a direction (not including time to prepare the supplies), in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"prepTime": {
"description": "The length of time it takes to prepare the items to be used in instructions or a direction, in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"supply": {
"description": "A sub-property of instrument. A supply consumed when performing instructions or a direction.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/HowToSupply"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/HowToSupply"
}
]
},
"type": "array"
}
]
},
"tool": {
"description": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/HowToTool"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/HowToTool"
}
]
},
"type": "array"
}
]
},
"totalTime": {
"description": "The total time required to perform instructions or a direction (including time to prepare the supplies), in ISO 8601 duration format.",
"format": "https://schema.org/Duration",
"type": "string"
}
},
"title": "HowToDirection",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ParentAudience.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ParentAudience",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PeopleAudience.schema.json",
"description": "A set of characteristics belonging to people, e.g. who compose an item's target audience."
}
],
"description": "A set of characteristics describing parents, who can be interested in viewing some content.",
"format": "http://schema.org/ParentAudience",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ParentAudience"
},
"childMaxAge": {
"description": "Maximal age of the child.",
"type": "number"
},
"childMinAge": {
"description": "Minimal age of the child.",
"type": "number"
}
},
"required": [
"@type"
],
"title": "ParentAudience",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/EmployerReview.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:EmployerReview",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Review",
"description": "A review of an item - for example, of a restaurant, movie, or store."
}
],
"description": "An [[EmployerReview]] is a review of an [[Organization]] regarding its role as an employer, written by a current or former employee of that organization.",
"title": "EmployerReview",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | 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.",
"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"
},
"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"
},
"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/Rating.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Rating",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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 rating is an evaluation on a numeric scale, such as 1 to 5 stars.",
"format": "http://schema.org/Rating",
"properties": {
"author": {
"anyOf": [
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
],
"description": "The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably."
},
"bestRating": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed."
},
"ratingValue": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The rating for the content.\n\nUsage guidelines:\n\n\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n"
},
"reviewAspect": {
"description": "This Review or Rating is relevant to this part or facet of the itemReviewed.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"worstRating": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
}
],
"description": "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed."
}
},
"title": "Rating",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/SuspendAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SuspendAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/ControlAction",
"description": "An agent controls a device or application."
}
],
"description": "The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer).",
"format": "http://schema.org/SuspendAction",
"title": "SuspendAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/Event.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Event",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects.",
"format": "http://schema.org/Event",
"properties": {
"about": {
"$ref": "Thing.schema.json",
"description": "The subject matter of the content."
},
"actor": {
"description": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"attendee": {
"description": "A person or organization attending the event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"attendees": {
"description": "A person attending the event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"audience": {
"$ref": "Audience.schema.json",
"description": "An intended audience, i.e. a group for whom something was created."
},
"composer": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The person or organization who wrote a composition, or who is the composer of a work performed at some event."
},
"contributor": {
"description": "A secondary contributor to the CreativeWork or Event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$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."
},
"doorTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The time admission will commence."
},
"duration": {
"description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"endDate": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The end date and time of the item (in ISO 8601 date format)."
},
"eventStatus": {
"description": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.",
"oneOf": [
{
"$ref": "EventStatusType.schema.json"
},
{
"items": {
"$ref": "EventStatusType.schema.json"
},
"type": "array"
}
]
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"inLanguage": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Language.schema.json"
}
],
"description": "The language of the content or performance or used in an action. Please use one of the language codes from the IETF BCP 47 standard. See also availableLanguage."
},
"isAccessibleForFree": {
"description": "A flag to signal that the item, event, or place is accessible for free.",
"type": "boolean"
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
}
],
"description": "The location of for example where the event is happening, an organization is located, or where an action takes place."
},
"maximumAttendeeCapacity": {
"description": "The total number of individuals that may attend an event or venue.",
"type": "integer"
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
"type": "array"
}
]
},
"organizer": {
"description": "An organizer of an Event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"performer": {
"description": "A performer at the event\u2014for example, a presenter, musician, musical group or actor.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"performers": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The main performer or performers of the event\u2014for example, a presenter, musician, or actor."
},
"previousStartDate": {
"description": "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.",
"oneOf": [
{
"format": "date",
"type": "string"
},
{
"items": {
"format": "date",
"type": "string"
},
"type": "array"
}
]
},
"recordedIn": {
"$ref": "CreativeWork.schema.json",
"description": "The CreativeWork that captured all or part of this Event."
},
"remainingAttendeeCapacity": {
"description": "The number of attendee places for an event that remain unallocated.",
"type": "integer"
},
"review": {
"description": "A review of the item.",
"oneOf": [
{
"$ref": "Review.schema.json"
},
{
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
}
]
},
"sponsor": {
"description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"startDate": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The start date and time of the item (in ISO 8601 date format)."
},
"subEvent": {
"description": "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.",
"oneOf": [
{
"$ref": "Event.schema.json"
},
{
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
]
},
"subEvents": {
"description": "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.",
"oneOf": [
{
"$ref": "Event.schema.json"
},
{
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
]
},
"superEvent": {
"description": "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.",
"oneOf": [
{
"$ref": "Event.schema.json"
},
{
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
]
},
"translator": {
"description": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"typicalAgeRange": {
"description": "The typical expected age range, e.g. '7-9', '11-'.",
"type": "string"
},
"workFeatured": {
"description": "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).",
"oneOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
}
]
},
"workPerformed": {
"description": "A work performed in some event, for example a play performed in a TheaterEvent.",
"oneOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
}
]
}
},
"title": "Event",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/SomeProducts.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SomeProducts",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Product",
"description": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online."
}
],
"description": "A placeholder for multiple similar products of the same kind.",
"properties": {
"inventoryLevel": {
"$ref": "http://schema.org/QuantitativeValue",
"description": "The current approximate inventory level for the item or items."
}
},
"title": "SomeProducts",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Answer.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Answer",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Comment",
"description": "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the text property, and its topic via about, properties shared with all CreativeWorks."
}
],
"description": "An answer offered to a question; perhaps correct, perhaps opinionated or wrong.",
"format": "http://schema.org/Answer",
"title": "Answer",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Airline.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Airline",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Organization",
"description": "An organization such as a school, NGO, corporation, club, etc."
}
],
"description": "An organization that provides flights for passengers.",
"format": "http://schema.org/Airline",
"properties": {
"boardingPolicy": {
"$ref": "http://schema.org/BoardingPolicyType",
"description": "The type of boarding policy used by the airline (e.g. zone-based or group-based)."
},
"iataCode": {
"description": "IATA identifier for an airline or airport.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
}
},
"title": "Airline",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/OrderItem.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/OrderItem",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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": "An order item is a line of an order. It includes the quantity and shipping details of a bought offer.",
"properties": {
"orderDelivery": {
"$ref": "http://schema.org/ParcelDelivery",
"description": "The delivery of the parcel related to this order or order item."
},
"orderItemNumber": {
"description": "The identifier of the order item.",
"type": "string"
},
"orderItemStatus": {
"$ref": "http://schema.org/OrderStatus",
"description": "The current status of the order item."
},
"orderQuantity": {
"description": "The number of the item ordered. If the property is not set, assume the quantity is one.",
"type": "number"
},
"orderedItem": {
"description": "The item ordered.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/OrderItem"
},
{
"$ref": "http://schema.org/Product"
},
{
"$ref": "http://schema.org/Service"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/OrderItem"
},
{
"$ref": "http://schema.org/Product"
},
{
"$ref": "http://schema.org/Service"
}
]
},
"type": "array"
}
]
}
},
"title": "OrderItem",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/LodgingBusiness.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LodgingBusiness",
"$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 lodging business, such as a motel, hotel, or inn.",
"format": "http://schema.org/LodgingBusiness",
"properties": {
"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"
},
"audience": {
"$ref": "Audience.schema.json",
"description": "An intended audience, i.e. a group for whom something was created."
},
"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": [
{
"$ref": "Language.schema.json"
},
{
"type": "string"
}
]
},
"type": "array"
},
"checkinTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The earliest someone may check into a lodging establishment."
},
"checkoutTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The latest someone may check out of a lodging establishment."
},
"numberOfRooms": {
"anyOf": [
{
"type": "number"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue."
},
"petsAllowed": {
"description": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value.",
"items": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"type": "array"
},
"starRating": {
"description": "An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).",
"items": {
"$ref": "Rating.schema.json"
},
"type": "array"
}
},
"title": "LodgingBusiness",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/ImageGallery.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ImageGallery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "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: Image gallery page.",
"title": "ImageGallery",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | d93f16a26bf98d23eb806d03ccce08d7cf15b99a | 2020-05-20T22:06:03 | schemas/LodgingReservation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/LodgingReservation",
"$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 lodging at a hotel, motel, inn, etc.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.",
"format": "http://schema.org/LodgingReservation",
"properties": {
"checkinTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The earliest someone may check into a lodging establishment."
},
"checkoutTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The latest someone may check out of a lodging establishment."
},
"lodgingUnitDescription": {
"description": "A full description of the lodging unit.",
"items": {
"type": "string"
},
"type": "array"
},
"lodgingUnitType": {
"description": "Textual description of the unit type (including suite vs. room, size of bed, etc.).",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "QualitativeValue.schema.json"
}
]
},
"type": "array"
},
"numAdults": {
"anyOf": [
{
"type": "integer"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The number of adults staying in the unit."
},
"numChildren": {
"anyOf": [
{
"type": "integer"
},
{
"$ref": "QuantitativeValue.schema.json"
}
],
"description": "The number of children staying in the unit."
}
},
"title": "LodgingReservation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | 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": "http://schema.org/CreativeWork",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "Instructions that explain how to achieve a result by performing a sequence of steps.",
"format": "http://schema.org/HowTo",
"properties": {
"estimatedCost": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/MonetaryAmount"
}
],
"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.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/CreativeWork"
},
{
"$ref": "http://schema.org/HowToSection"
},
{
"$ref": "http://schema.org/HowToStep"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/CreativeWork"
},
{
"$ref": "http://schema.org/HowToSection"
},
{
"$ref": "http://schema.org/HowToStep"
}
]
},
"type": "array"
}
]
},
"steps": {
"description": "A single step item (as HowToStep, text, document, video, etc.) or a HowToSection (originally misnamed 'steps'; 'step' is preferred).",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/CreativeWork"
},
{
"$ref": "http://schema.org/ItemList"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/CreativeWork"
},
{
"$ref": "http://schema.org/ItemList"
}
]
},
"type": "array"
}
]
},
"supply": {
"description": "A sub-property of instrument. A supply consumed when performing instructions or a direction.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/HowToSupply"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/HowToSupply"
}
]
},
"type": "array"
}
]
},
"tool": {
"description": "A sub property of instrument. An object used (but not consumed) when performing instructions or a direction.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/HowToTool"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "http://schema.org/HowToTool"
}
]
},
"type": "array"
}
]
},
"totalTime": {
"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": "http://schema.org/QuantitativeValue"
}
],
"description": "The quantity that results by performing instructions. For example, a paper airplane, 10 personalized candles."
}
},
"title": "HowTo",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/UKNonprofitType.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:UKNonprofitType",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:NonprofitType",
"description": "NonprofitType enumerates several kinds of official non-profit types of which a non-profit organization can be."
}
],
"description": "UKNonprofitType: Non-profit organization type originating from the United Kingdom.",
"title": "UKNonprofitType",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/BusinessAudience.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BusinessAudience",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Audience.schema.json",
"description": "Intended audience for an item, i.e. the group for whom the item was created."
}
],
"description": "A set of characteristics belonging to businesses, e.g. who compose an item's target audience.",
"format": "http://schema.org/BusinessAudience",
"properties": {
"numberOfEmployees": {
"$ref": "QuantitativeValue.schema.json",
"description": "The number of employees in an organization e.g. business."
},
"yearlyRevenue": {
"$ref": "QuantitativeValue.schema.json",
"description": "The size of the business in annual revenue."
},
"yearsInOperation": {
"$ref": "QuantitativeValue.schema.json",
"description": "The age of the business."
}
},
"title": "BusinessAudience",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/State.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/State",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AdministrativeArea.schema.json",
"description": "A geographical region, typically under the jurisdiction of a particular government."
}
],
"description": "A state or province of a country.",
"format": "http://schema.org/State",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "State"
}
},
"required": [
"@type"
],
"title": "State",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/MiddleSchool.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MiddleSchool",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/EducationalOrganization",
"description": "An educational organization."
}
],
"description": "A middle school (typically for children aged around 11-14, although this varies somewhat).",
"format": "http://schema.org/MiddleSchool",
"title": "MiddleSchool",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Physician.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Physician",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MedicalOrganization.schema.json",
"description": "A medical organization (physical or not), such as hospital, institution or clinic."
}
],
"description": "A doctor's office.",
"format": "http://schema.org/Physician",
"title": "Physician",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/BuddhistTemple.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BuddhistTemple",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PlaceOfWorship.schema.json",
"description": "Place of worship, such as a church, synagogue, or mosque."
}
],
"description": "A Buddhist temple.",
"format": "http://schema.org/BuddhistTemple",
"title": "BuddhistTemple",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/BefriendAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BefriendAction",
"$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 (object) mutually/bidirectionally/symmetrically.\n\nRelated actions:\n\n\nFollowAction: Unlike FollowAction, BefriendAction implies that the connection is reciprocal.\n\n",
"format": "http://schema.org/BefriendAction",
"title": "BefriendAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/MovieTheater.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MovieTheater",
"$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."
},
{
"$ref": "http://schema.org/EntertainmentBusiness",
"description": "A business providing entertainment."
}
],
"description": "A movie theater.",
"format": "http://schema.org/MovieTheater",
"properties": {
"screenCount": {
"description": "The number of screens in the movie theater.",
"type": "number"
}
},
"title": "MovieTheater",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/HousePainter.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HousePainter",
"$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 house painting service.",
"format": "http://schema.org/HousePainter",
"title": "HousePainter",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Hackathon.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Hackathon",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Event",
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects."
}
],
"description": "A [hackathon](https://en.wikipedia.org/wiki/Hackathon) event.",
"title": "Hackathon",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Canal.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Canal",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "BodyOfWater.schema.json",
"description": "A body of water, such as a sea, ocean, or lake."
}
],
"description": "A canal, like the Panama Canal.",
"format": "http://schema.org/Canal",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Canal"
}
},
"required": [
"@type"
],
"title": "Canal",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/Event.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Event",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Thing.schema.json",
"description": "The most generic type of item."
}
],
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects.",
"format": "http://schema.org/Event",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Event"
},
"about": {
"$ref": "Thing.schema.json",
"description": "The subject matter of the content."
},
"actor": {
"description": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"$ref": "Person.schema.json"
},
{
"items": {
"$ref": "Person.schema.json"
},
"type": "array"
}
]
},
"aggregateRating": {
"$ref": "AggregateRating.schema.json",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"attendee": {
"description": "A person or organization attending the event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"attendees": {
"description": "A person attending the event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"audience": {
"$ref": "Audience.schema.json",
"description": "An intended audience, i.e. a group for whom something was created."
},
"composer": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The person or organization who wrote a composition, or who is the composer of a work performed at some event."
},
"contributor": {
"description": "A secondary contributor to the CreativeWork or Event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$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."
},
"doorTime": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "time",
"type": "string"
}
],
"description": "The time admission will commence."
},
"duration": {
"description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.",
"format": "https://schema.org/Duration",
"type": "string"
},
"endDate": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The end date and time of the item (in ISO 8601 date format)."
},
"eventStatus": {
"description": "An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.",
"oneOf": [
{
"$ref": "EventStatusType.schema.json"
},
{
"items": {
"$ref": "EventStatusType.schema.json"
},
"type": "array"
}
]
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"inLanguage": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Language.schema.json"
}
],
"description": "The language of the content or performance or used in an action. Please use one of the language codes from the IETF BCP 47 standard. See also availableLanguage."
},
"isAccessibleForFree": {
"description": "A flag to signal that the item, event, or place is accessible for free.",
"type": "boolean"
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Place.schema.json"
},
{
"$ref": "PostalAddress.schema.json"
}
],
"description": "The location of for example where the event is happening, an organization is located, or where an action takes place."
},
"maximumAttendeeCapacity": {
"description": "The total number of individuals that may attend an event or venue.",
"type": "integer"
},
"offers": {
"description": "An offer to provide this item\u2014for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. Use businessFunction to indicate the kind of transaction offered, i.e. sell, lease, etc. This property can also be used to describe a Demand. While this property is listed as expected on a number of common types, it can be used in others. In that case, using a second type, such as Product or a subtype of Product, can clarify the nature of the offer.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Demand.schema.json"
},
{
"$ref": "Offer.schema.json"
}
]
},
"type": "array"
}
]
},
"organizer": {
"description": "An organizer of an Event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"performer": {
"description": "A performer at the event\u2014for example, a presenter, musician, musical group or actor.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"performers": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "The main performer or performers of the event\u2014for example, a presenter, musician, or actor."
},
"previousStartDate": {
"description": "Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.",
"oneOf": [
{
"format": "date",
"type": "string"
},
{
"items": {
"format": "date",
"type": "string"
},
"type": "array"
}
]
},
"recordedIn": {
"$ref": "CreativeWork.schema.json",
"description": "The CreativeWork that captured all or part of this Event."
},
"remainingAttendeeCapacity": {
"description": "The number of attendee places for an event that remain unallocated.",
"type": "integer"
},
"review": {
"description": "A review of the item.",
"oneOf": [
{
"$ref": "Review.schema.json"
},
{
"items": {
"$ref": "Review.schema.json"
},
"type": "array"
}
]
},
"sponsor": {
"description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"startDate": {
"anyOf": [
{
"format": "date",
"type": "string"
},
{
"format": "date-time",
"type": "string"
}
],
"description": "The start date and time of the item (in ISO 8601 date format)."
},
"subEvent": {
"description": "An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.",
"oneOf": [
{
"$ref": "Event.schema.json"
},
{
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
]
},
"subEvents": {
"description": "Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference.",
"oneOf": [
{
"$ref": "Event.schema.json"
},
{
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
]
},
"superEvent": {
"description": "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.",
"oneOf": [
{
"$ref": "Event.schema.json"
},
{
"items": {
"$ref": "Event.schema.json"
},
"type": "array"
}
]
},
"translator": {
"description": "Organization or person who adapts a creative work to different languages, regional differences and technical requirements of a target market, or that translates during some event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
]
},
"typicalAgeRange": {
"description": "The typical expected age range, e.g. '7-9', '11-'.",
"type": "string"
},
"workFeatured": {
"description": "A work featured in some event, e.g. exhibited in an ExhibitionEvent.\n Specific subproperties are available for workPerformed (e.g. a play), or a workPresented (a Movie at a ScreeningEvent).",
"oneOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
}
]
},
"workPerformed": {
"description": "A work performed in some event, for example a play performed in a TheaterEvent.",
"oneOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "Event",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/DeliveryMethod.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DeliveryMethod",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\n\nCommonly used values:\n\n\nhttp://purl.org/goodrelations/v1#DeliveryModeDirectDownload\nhttp://purl.org/goodrelations/v1#DeliveryModeFreight\nhttp://purl.org/goodrelations/v1#DeliveryModeMail\nhttp://purl.org/goodrelations/v1#DeliveryModeOwnFleet\nhttp://purl.org/goodrelations/v1#DeliveryModePickUp\nhttp://purl.org/goodrelations/v1#DHL\nhttp://purl.org/goodrelations/v1#FederalExpress\nhttp://purl.org/goodrelations/v1#UPS\n\n",
"format": "http://schema.org/DeliveryMethod",
"oneOf": [
{
"const": "OnSitePickup",
"description": "A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office."
}
],
"title": "DeliveryMethod",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ConsumeAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ConsumeAction",
"$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 ingesting information/resources/food.",
"format": "http://schema.org/ConsumeAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ConsumeAction"
},
"actionAccessibilityRequirement": {
"description": "A set of requirements that a must be fulfilled in order to perform an Action. If more than one value is specied, fulfilling one set of requirements will allow the Action to be performed.",
"items": {
"$ref": "ActionAccessSpecification.schema.json"
},
"type": "array"
},
"expectsAcceptanceOf": {
"description": "An Offer which must be accepted before the user can perform the Action. For example, the user may need to buy a movie before being able to watch it.",
"items": {
"$ref": "Offer.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "ConsumeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/AutoBodyShop.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:AutoBodyShop",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:AutomotiveBusiness",
"description": "Car repair, sales, or parts."
}
],
"description": "Auto body shop.",
"title": "AutoBodyShop",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | 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": "http://schema.org/AllocateAction",
"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.",
"oneOf": [
{
"anyOf": [
{
"$ref": "http://schema.org/Audience"
},
{
"$ref": "http://schema.org/ContactPoint"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "http://schema.org/Audience"
},
{
"$ref": "http://schema.org/ContactPoint"
},
{
"$ref": "http://schema.org/Organization"
},
{
"$ref": "http://schema.org/Person"
}
]
},
"type": "array"
}
]
}
},
"title": "AuthorizeAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ProgramMembership.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ProgramMembership",
"$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 membership in a loyalty programs (e.g. \"StarAliance\"), traveler clubs (e.g. \"AAA\"), purchase clubs (\"Safeway Club\"), etc.",
"format": "http://schema.org/ProgramMembership",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ProgramMembership"
},
"hostingOrganization": {
"$ref": "Organization.schema.json",
"description": "The organization (airline, travelers' club, etc.) the membership is made with."
},
"member": {
"description": "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"members": {
"description": "A member of this organization.",
"items": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
},
"membershipNumber": {
"description": "A unique identifier for the membership.",
"items": {
"type": "string"
},
"type": "array"
},
"programName": {
"description": "The program providing the membership.",
"type": "string"
}
},
"required": [
"@type"
],
"title": "ProgramMembership",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ArtGallery.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ArtGallery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "EntertainmentBusiness.schema.json",
"description": "A business providing entertainment."
}
],
"description": "An art gallery.",
"format": "http://schema.org/ArtGallery",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ArtGallery"
}
},
"required": [
"@type"
],
"title": "ArtGallery",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/DanceEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:DanceEvent",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Event",
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects."
}
],
"description": "Event type: A social dance.",
"title": "DanceEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/PoliceStation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PoliceStation",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CivicStructure",
"description": "A public structure, such as a town hall or concert hall."
},
{
"$ref": "http://schema.org/EmergencyService",
"description": "An emergency service, such as a fire station or ER."
}
],
"description": "A police station.",
"title": "PoliceStation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/Organization.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:Organization",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Thing",
"description": "The most generic type of item."
}
],
"description": "An organization such as a school, NGO, corporation, club, etc.",
"properties": {
"actionableFeedbackPolicy": {
"description": "For a [[NewsMediaOrganization]] or other news-related [[Organization]], a statement about public engagement activities (for news media, the newsroom\u2019s), including involving the public - digitally or otherwise -- in coverage decisions, reporting and activities after publication.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWork"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWork"
}
]
},
"type": "array"
}
]
},
"address": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:PostalAddress"
}
],
"description": "Physical address of the item."
},
"aggregateRating": {
"$ref": "schema:AggregateRating",
"description": "The overall rating, based on a collection of reviews or ratings, of the item."
},
"alumni": {
"description": "Alumni of an organization.",
"oneOf": [
{
"$ref": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
},
"areaServed": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:AdministrativeArea"
},
{
"$ref": "schema:GeoShape"
},
{
"$ref": "schema:Place"
}
],
"description": "The geographic area where a service or offered item is provided."
},
"award": {
"description": "An award won by or for this item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"awards": {
"description": "Awards won by or for this item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"brand": {
"anyOf": [
{
"$ref": "schema:Brand"
},
{
"$ref": "schema:Organization"
}
],
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person."
},
"contactPoint": {
"description": "A contact point for a person or organization.",
"oneOf": [
{
"$ref": "schema:ContactPoint"
},
{
"items": {
"$ref": "schema:ContactPoint"
},
"type": "array"
}
]
},
"contactPoints": {
"description": "A contact point for a person or organization.",
"oneOf": [
{
"$ref": "schema:ContactPoint"
},
{
"items": {
"$ref": "schema:ContactPoint"
},
"type": "array"
}
]
},
"correctionsPolicy": {
"description": "For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement describing (in news media, the newsroom\u2019s) disclosure and correction policy for errors.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWork"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWork"
}
]
},
"type": "array"
}
]
},
"department": {
"description": "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.",
"oneOf": [
{
"$ref": "schema:Organization"
},
{
"items": {
"$ref": "schema:Organization"
},
"type": "array"
}
]
},
"dissolutionDate": {
"description": "The date that this organization was dissolved.",
"format": "date",
"type": "string"
},
"diversityPolicy": {
"description": "Statement on diversity policy by an [[Organization]] e.g. a [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement describing the newsroom\u2019s diversity policy on both staffing and sources, typically providing staffing data.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWork"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWork"
}
]
},
"type": "array"
}
]
},
"diversityStaffingReport": {
"description": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a report on staffing diversity issues. In a news context this might be for example ASNE or RTDNA (US) reports, or self-reported.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:Article"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:Article"
}
]
},
"type": "array"
}
]
},
"duns": {
"description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
"type": "string"
},
"email": {
"description": "Email address.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"employee": {
"description": "Someone working for this organization.",
"oneOf": [
{
"$ref": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
},
"employees": {
"description": "People working for this organization.",
"oneOf": [
{
"$ref": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
},
"ethicsPolicy": {
"description": "Statement about ethics policy, e.g. of a [[NewsMediaOrganization]] regarding journalistic and publishing practices, or of a [[Restaurant]], a page describing food source policies. In the case of a [[NewsMediaOrganization]], an ethicsPolicy is typically a statement describing the personal, organizational, and corporate standards of behavior expected by the organization.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWork"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWork"
}
]
},
"type": "array"
}
]
},
"event": {
"description": "Upcoming or past event associated with this place, organization, or action.",
"oneOf": [
{
"$ref": "schema:Event"
},
{
"items": {
"$ref": "schema:Event"
},
"type": "array"
}
]
},
"events": {
"description": "Upcoming or past events associated with this place or organization.",
"oneOf": [
{
"$ref": "schema:Event"
},
{
"items": {
"$ref": "schema:Event"
},
"type": "array"
}
]
},
"faxNumber": {
"description": "The fax number.",
"type": "string"
},
"founder": {
"description": "A person who founded this organization.",
"oneOf": [
{
"$ref": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
},
"founders": {
"description": "A person who founded this organization.",
"oneOf": [
{
"$ref": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
},
"foundingDate": {
"description": "The date that this organization was founded.",
"format": "date",
"type": "string"
},
"foundingLocation": {
"$ref": "schema:Place",
"description": "The place where the Organization was founded."
},
"funder": {
"description": "A person or organization that supports (sponsors) something through some kind of financial contribution.",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
"type": "array"
}
]
},
"globalLocationNumber": {
"description": "The [Global Location Number](http://www.gs1.org/gln) (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"
},
"hasCredential": {
"description": "A credential awarded to the Person or Organization.",
"oneOf": [
{
"$ref": "schema:EducationalOccupationalCredential"
},
{
"items": {
"$ref": "schema:EducationalOccupationalCredential"
},
"type": "array"
}
]
},
"hasMerchantReturnPolicy": {
"description": "Specifies a MerchantReturnPolicy that may be applicable.",
"oneOf": [
{
"$ref": "schema:MerchantReturnPolicy"
},
{
"items": {
"$ref": "schema:MerchantReturnPolicy"
},
"type": "array"
}
]
},
"hasOfferCatalog": {
"description": "Indicates an OfferCatalog listing for this Organization, Person, or Service.",
"oneOf": [
{
"$ref": "schema:OfferCatalog"
},
{
"items": {
"$ref": "schema:OfferCatalog"
},
"type": "array"
}
]
},
"hasPOS": {
"description": "Points-of-Sales operated by the organization or person.",
"oneOf": [
{
"$ref": "schema:Place"
},
{
"items": {
"$ref": "schema:Place"
},
"type": "array"
}
]
},
"interactionStatistic": {
"$ref": "schema:InteractionCounter",
"description": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used."
},
"isicV4": {
"description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
"type": "string"
},
"knowsAbout": {
"description": "Of a [[Person]], and less typically of an [[Organization]], to indicate a topic that is known about - suggesting possible expertise but not implying it. We do not distinguish skill levels here, or relate this to educational content, events, objectives or [[JobPosting]] descriptions.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "schema:Thing"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "schema:Thing"
}
]
},
"type": "array"
}
]
},
"knowsLanguage": {
"description": "Of a [[Person]], and less typically of an [[Organization]], to indicate a known language. We do not distinguish skill levels or reading/writing/speaking/signing here. Use language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47).",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:Language"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:Language"
}
]
},
"type": "array"
}
]
},
"legalName": {
"description": "The official name of the organization, e.g. the registered company name.",
"type": "string"
},
"leiCode": {
"description": "An organization identifier that uniquely identifies a legal entity as defined in ISO 17442.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "schema:Place"
},
{
"$ref": "schema:PostalAddress"
},
{
"$ref": "schema:VirtualLocation"
}
],
"description": "The location of, for example, where an event is happening, where an organization is located, or where an action takes place."
},
"logo": {
"description": "An associated logo.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:ImageObject"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:ImageObject"
}
]
},
"type": "array"
}
]
},
"makesOffer": {
"description": "A pointer to products or services offered by the organization or person.",
"oneOf": [
{
"$ref": "schema:Offer"
},
{
"items": {
"$ref": "schema:Offer"
},
"type": "array"
}
]
},
"member": {
"description": "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
"type": "array"
}
]
},
"memberOf": {
"description": "An Organization (or ProgramMembership) to which this Person or Organization belongs.",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:ProgramMembership"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:ProgramMembership"
}
]
},
"type": "array"
}
]
},
"members": {
"description": "A member of this organization.",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
"type": "array"
}
]
},
"naics": {
"description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
"type": "string"
},
"nonprofitStatus": {
"description": "nonprofit Status indicates the legal status of a non-profit organization in its primary place of business.",
"oneOf": [
{
"$ref": "schema:NonprofitType"
},
{
"items": {
"$ref": "schema:NonprofitType"
},
"type": "array"
}
]
},
"numberOfEmployees": {
"$ref": "schema:QuantitativeValue",
"description": "The number of employees in an organization e.g. business."
},
"ownershipFundingInfo": {
"description": "For an [[Organization]] (often but not necessarily a [[NewsMediaOrganization]]), a description of organizational ownership structure; funding and grants. In a news/media setting, this is with particular reference to editorial independence. Note that the [[funder]] is also available and can be used to make basic funder information machine-readable.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "schema:AboutPage"
},
{
"$ref": "schema:CreativeWork"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "schema:AboutPage"
},
{
"$ref": "schema:CreativeWork"
}
]
},
"type": "array"
}
]
},
"owns": {
"description": "Products owned by the organization or person.",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:OwnershipInfo"
},
{
"$ref": "schema:Product"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:OwnershipInfo"
},
{
"$ref": "schema:Product"
}
]
},
"type": "array"
}
]
},
"parentOrganization": {
"$ref": "schema:Organization",
"description": "The larger organization that this organization is a [[subOrganization]] of, if any."
},
"publishingPrinciples": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWork"
}
],
"description": "The publishingPrinciples property indicates (typically via [[URL]]) a document describing the editorial principles of an [[Organization]] (or individual e.g. a [[Person]] writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are those of the party primarily responsible for the creation of the [[CreativeWork]].\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a [[funder]]) can be expressed using schema.org terminology.\n"
},
"review": {
"description": "A review of the item.",
"oneOf": [
{
"$ref": "schema:Review"
},
{
"items": {
"$ref": "schema:Review"
},
"type": "array"
}
]
},
"reviews": {
"description": "Review of the item.",
"oneOf": [
{
"$ref": "schema:Review"
},
{
"items": {
"$ref": "schema:Review"
},
"type": "array"
}
]
},
"seeks": {
"description": "A pointer to products or services sought by the organization or person (demand).",
"oneOf": [
{
"$ref": "schema:Demand"
},
{
"items": {
"$ref": "schema:Demand"
},
"type": "array"
}
]
},
"serviceArea": {
"anyOf": [
{
"$ref": "schema:AdministrativeArea"
},
{
"$ref": "schema:GeoShape"
},
{
"$ref": "schema:Place"
}
],
"description": "The geographic area where the service is provided."
},
"slogan": {
"description": "A slogan or motto associated with the item.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"sponsor": {
"description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.",
"oneOf": [
{
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
{
"items": {
"anyOf": [
{
"$ref": "schema:Organization"
},
{
"$ref": "schema:Person"
}
]
},
"type": "array"
}
]
},
"subOrganization": {
"description": "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.",
"oneOf": [
{
"$ref": "schema:Organization"
},
{
"items": {
"$ref": "schema:Organization"
},
"type": "array"
}
]
},
"taxID": {
"description": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
"type": "string"
},
"telephone": {
"description": "The telephone number.",
"type": "string"
},
"unnamedSourcesPolicy": {
"description": "For an [[Organization]] (typically a [[NewsMediaOrganization]]), a statement about policy on use of unnamed sources and the decision process required.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWork"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "schema:CreativeWork"
}
]
},
"type": "array"
}
]
},
"vatID": {
"description": "The Value-added Tax ID of the organization or person.",
"type": "string"
}
},
"title": "Organization",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/SocialMediaPosting.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SocialMediaPosting",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Article.schema.json",
"description": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\n\nSee also blog post."
}
],
"description": "A post to a social media platform, including blog posts, tweets, Facebook posts, etc.",
"format": "http://schema.org/SocialMediaPosting",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "SocialMediaPosting"
},
"sharedContent": {
"description": "A CreativeWork such as an image, video, or audio clip shared as part of this posting.",
"items": {
"$ref": "CreativeWork.schema.json"
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "SocialMediaPosting",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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": "http://schema.org/CreativeWork",
"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.",
"properties": {
"characterAttribute": {
"description": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).",
"oneOf": [
{
"$ref": "http://schema.org/Thing"
},
{
"items": {
"$ref": "http://schema.org/Thing"
},
"type": "array"
}
]
},
"gameItem": {
"description": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.",
"oneOf": [
{
"$ref": "http://schema.org/Thing"
},
{
"items": {
"$ref": "http://schema.org/Thing"
},
"type": "array"
}
]
},
"gameLocation": {
"description": "Real or fictional location of the game (or part of game).",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/Place"
},
{
"$ref": "http://schema.org/PostalAddress"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"$ref": "http://schema.org/Place"
},
{
"$ref": "http://schema.org/PostalAddress"
}
]
},
"type": "array"
}
]
},
"numberOfPlayers": {
"description": "Indicate how many people can play this game (minimum, maximum, or range).",
"oneOf": [
{
"$ref": "http://schema.org/QuantitativeValue"
},
{
"items": {
"$ref": "http://schema.org/QuantitativeValue"
},
"type": "array"
}
]
},
"quest": {
"$ref": "http://schema.org/Thing",
"description": "The task that a player-controlled character, or group of characters may complete in order to gain a reward."
}
},
"title": "Game",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/Flight.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Flight",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Trip.schema.json",
"description": "A trip or journey. An itinerary of visits to one or more places."
}
],
"description": "An airline flight.",
"format": "http://schema.org/Flight",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Flight"
},
"aircraft": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Vehicle.schema.json"
}
],
"description": "The kind of aircraft (e.g., \"Boeing 747\")."
},
"arrivalAirport": {
"$ref": "Airport.schema.json",
"description": "The airport where the flight terminates."
},
"arrivalGate": {
"description": "Identifier of the flight's arrival gate.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"arrivalTerminal": {
"description": "Identifier of the flight's arrival terminal.",
"oneOf": [
{
"type": "string"
},
{
"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.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"departureTerminal": {
"description": "Identifier of the flight's departure terminal.",
"oneOf": [
{
"type": "string"
},
{
"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.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"seller": {
"anyOf": [
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
],
"description": "An entity which offers (sells / leases / lends / loans) the services / goods. A seller may also be a provider."
},
"webCheckinTime": {
"description": "The time when a passenger can check into the flight online.",
"format": "date-time",
"type": "string"
}
},
"required": [
"@type"
],
"title": "Flight",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Periodical.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Periodical",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CreativeWorkSeries",
"description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike ItemList which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as tv, radio and games).\n\nSpecific subtypes are available for describing TVSeries, RadioSeries, MovieSeries, BookSeries, Periodical and VideoGameSeries. In each case, the hasPart / isPartOf properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\n\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate."
}
],
"description": "A publication in any medium issued in successive parts bearing numerical or chronological designations and intended, such as a magazine, scholarly journal, or newspaper to continue indefinitely.\n\nSee also blog post.",
"title": "Periodical",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Bridge.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Bridge",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CivicStructure",
"description": "A public structure, such as a town hall or concert hall."
}
],
"description": "A bridge.",
"title": "Bridge",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/MonetaryAmount.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/MonetaryAmount",
"$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 monetary value or range. This type can be used to describe an amount of money such as $50 USD, or a range as in describing a bank account being suitable for a balance between \u00a31,000 and \u00a31,000,000 GBP, or the value of a salary, etc. It is recommended to use PriceSpecification Types to describe the price of an Offer, Invoice, etc.",
"format": "http://schema.org/MonetaryAmount",
"properties": {
"currency": {
"description": "The currency in which the monetary amount is expressed.\n\nUse standard formats: ISO 4217 currency format e.g. \"USD\"; Ticker symbol for cryptocurrencies e.g. \"BTC\"; well known names for Local Exchange Tradings Systems (LETS) and other currency types e.g. \"Ithaca HOUR\".",
"type": "string"
},
"maxValue": {
"description": "The upper value of some characteristic or property.",
"type": "number"
},
"minValue": {
"description": "The lower value of some characteristic or property.",
"type": "number"
},
"validFrom": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The date when the item becomes valid."
},
"validThrough": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
}
],
"description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours."
},
"value": {
"anyOf": [
{
"type": "number"
},
{
"type": "string"
},
{
"type": "boolean"
},
{
"$ref": "StructuredValue.schema.json"
}
],
"description": "The value of the quantitative value or property value node.\n\n\nFor QuantitativeValue and MonetaryAmount, the recommended type for values is 'Number'.\nFor PropertyValue, it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n"
}
},
"title": "MonetaryAmount",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/HobbyShop.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/HobbyShop",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A store that sells materials useful or necessary for various hobbies.",
"format": "http://schema.org/HobbyShop",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "HobbyShop"
}
},
"required": [
"@type"
],
"title": "HobbyShop",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | 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": "EducationalOrganization.schema.json",
"description": "An educational organization."
}
],
"description": "A school.",
"format": "http://schema.org/School",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "School"
}
},
"required": [
"@type"
],
"title": "School",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/MedicalAudience.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:MedicalAudience",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Audience",
"description": "Intended audience for an item, i.e. the group for whom the item was created."
},
{
"$ref": "schema:PeopleAudience",
"description": "A set of characteristics belonging to people, e.g. who compose an item's target audience."
}
],
"description": "Target audiences for medical web pages.",
"title": "MedicalAudience",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Zoo.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Zoo",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/CivicStructure",
"description": "A public structure, such as a town hall or concert hall."
}
],
"description": "A zoo.",
"title": "Zoo",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/ToyStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ToyStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Store",
"description": "A retail good store."
}
],
"description": "A toy store.",
"title": "ToyStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/TaxiReservation.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:TaxiReservation",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Reservation",
"description": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use [[Offer]]."
}
],
"description": "A reservation for 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]].",
"properties": {
"partySize": {
"description": "Number of people the reservation should accommodate.",
"oneOf": [
{
"anyOf": [
{
"type": "integer"
},
{
"$ref": "schema:QuantitativeValue"
}
]
},
{
"items": {
"anyOf": [
{
"type": "integer"
},
{
"$ref": "schema:QuantitativeValue"
}
]
},
"type": "array"
}
]
},
"pickupLocation": {
"description": "Where a taxi will pick up a passenger or a rental car can be picked up.",
"oneOf": [
{
"$ref": "schema:Place"
},
{
"items": {
"$ref": "schema:Place"
},
"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"
}
]
}
},
"title": "TaxiReservation",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/TrainTrip.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:TrainTrip",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Trip",
"description": "A trip or journey. An itinerary of visits to one or more places."
}
],
"description": "A trip on a commercial train line.",
"properties": {
"arrivalPlatform": {
"description": "The platform where the train arrives.",
"type": "string"
},
"arrivalStation": {
"$ref": "schema:TrainStation",
"description": "The station where the train trip ends."
},
"departurePlatform": {
"description": "The platform from which the train departs.",
"type": "string"
},
"departureStation": {
"$ref": "schema:TrainStation",
"description": "The station from which the train departs."
},
"trainName": {
"description": "The name of the train (e.g. The Orient Express).",
"type": "string"
},
"trainNumber": {
"description": "The unique identifier for the train.",
"type": "string"
}
},
"title": "TrainTrip",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/HowToTool.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:HowToTool",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:HowToItem",
"description": "An item used as either a tool or supply when performing the instructions for how to to achieve a result."
}
],
"description": "A tool used (but not consumed) when performing instructions for how to achieve a result.",
"title": "HowToTool",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Energy.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Energy",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Quantity.schema.json",
"description": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'."
}
],
"description": "Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'.",
"format": "http://schema.org/Energy",
"title": "Energy",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ScheduleAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ScheduleAction",
"$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": "Scheduling future actions, events, or tasks.\n\nRelated actions:\n\n\nReserveAction: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation.\n\n",
"format": "http://schema.org/ScheduleAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ScheduleAction"
}
},
"required": [
"@type"
],
"title": "ScheduleAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/DaySpa.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DaySpa",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/HealthAndBeautyBusiness",
"description": "Health and beauty."
}
],
"description": "A day spa.",
"title": "DaySpa",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/SolveMathAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:SolveMathAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Action",
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html)."
}
],
"description": "The action that takes in a math expression and directs users to a page potentially capable of solving/simplifying that expression.",
"properties": {
"eduQuestionType": {
"description": "For questions that are part of learning resources (e.g. Quiz), eduQuestionType indicates the format of question being given. Example: \"Multiple choice\", \"Open ended\", \"Flashcard\".",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
}
},
"title": "SolveMathAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/WPAdBlock.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/WPAdBlock",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "WebPageElement.schema.json",
"description": "A web page element, like a table or an image."
}
],
"description": "An advertising section of the page.",
"format": "http://schema.org/WPAdBlock",
"title": "WPAdBlock",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | 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": {
"oneOf": [
{
"$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": {
"oneOf": [
{
"$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": {
"oneOf": [
{
"$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 | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/Review.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Review",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "CreativeWork.schema.json",
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc."
}
],
"description": "A review of an item - for example, of a restaurant, movie, or store.",
"format": "http://schema.org/Review",
"properties": {
"itemReviewed": {
"$ref": "Thing.schema.json",
"description": "The item that is being reviewed/rated."
},
"reviewAspect": {
"description": "This Review or Rating is relevant to this part or facet of the itemReviewed.",
"items": {
"type": "string"
},
"type": "array"
},
"reviewBody": {
"description": "The actual body of the review.",
"type": "string"
},
"reviewRating": {
"$ref": "Rating.schema.json",
"description": "The rating given in this review. Note that reviews can themselves be rated. The reviewRating applies to rating given by the review. The aggregateRating property applies to the review itself, as a creative work."
}
},
"title": "Review",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/BookStore.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/BookStore",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Store.schema.json",
"description": "A retail good store."
}
],
"description": "A bookstore.",
"format": "http://schema.org/BookStore",
"title": "BookStore",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/PaymentCard.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/PaymentCard",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PaymentMethod.schema.json",
"description": "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\n\nCommonly used values:\n\n\nhttp://purl.org/goodrelations/v1#ByBankTransferInAdvance\nhttp://purl.org/goodrelations/v1#ByInvoice\nhttp://purl.org/goodrelations/v1#Cash\nhttp://purl.org/goodrelations/v1#CheckInAdvance\nhttp://purl.org/goodrelations/v1#COD\nhttp://purl.org/goodrelations/v1#DirectDebit\nhttp://purl.org/goodrelations/v1#GoogleCheckout\nhttp://purl.org/goodrelations/v1#PayPal\nhttp://purl.org/goodrelations/v1#PaySwarm\n\n"
},
{
"$ref": "FinancialProduct.schema.json",
"description": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry."
}
],
"description": "A payment method using a credit, debit, store or other card to associate the payment with an account.",
"format": "http://schema.org/PaymentCard",
"title": "PaymentCard",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/SearchAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SearchAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "Action.schema.json",
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document."
}
],
"description": "The act of searching for an object.\n\nRelated actions:\n\n\nFindAction: SearchAction generally leads to a FindAction, but not necessarily.\n\n",
"format": "http://schema.org/SearchAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "SearchAction"
},
"query": {
"description": "A sub property of instrument. The query used on this action.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "SearchAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | 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": "ReactAction.schema.json",
"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.",
"format": "http://schema.org/WantAction",
"title": "WantAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/Bakery.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Bakery",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/FoodEstablishment",
"description": "A food-related business."
}
],
"description": "A bakery.",
"title": "Bakery",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/SuspendAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SuspendAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "ControlAction.schema.json",
"description": "An agent controls a device or application."
}
],
"description": "The act of momentarily pausing a device or application (e.g. pause music playback or pause a timer).",
"format": "http://schema.org/SuspendAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "SuspendAction"
}
},
"required": [
"@type"
],
"title": "SuspendAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/ChooseAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ChooseAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AssessAction.schema.json",
"description": "The act of forming one's opinion, reaction or sentiment."
}
],
"description": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options.",
"format": "http://schema.org/ChooseAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ChooseAction"
},
"actionOption": {
"description": "A sub property of object. The options subject to this action.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
}
]
},
"option": {
"description": "A sub property of object. The options subject to this action.",
"oneOf": [
{
"anyOf": [
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "Thing.schema.json"
}
]
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "ChooseAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | b2e53fc058740940d51ae80a92d53c99f0b57ab0 | 2020-05-12T22:52:12 | schemas/ImageObject.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ImageObject",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "MediaObject.schema.json",
"description": "A media object, such as an image, video, or audio object embedded in a web page or a downloadable dataset i.e. DataDownload. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's)."
}
],
"description": "An image file.",
"format": "http://schema.org/ImageObject",
"properties": {
"caption": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "MediaObject.schema.json"
}
],
"description": "The caption for this object. For downloadable machine formats (closed caption, subtitles etc.) use MediaObject and indicate the encodingFormat."
},
"exifData": {
"anyOf": [
{
"$ref": "PropertyValue.schema.json"
},
{
"type": "string"
}
],
"description": "exif data for this object."
},
"representativeOfPage": {
"description": "Indicates whether this image is representative of the content of the page.",
"type": "boolean"
},
"thumbnail": {
"$ref": "ImageObject.schema.json",
"description": "Thumbnail image for an image or video."
}
},
"title": "ImageObject",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/TheaterGroup.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/TheaterGroup",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "PerformingGroup.schema.json",
"description": "A performance group, such as a band, an orchestra, or a circus."
}
],
"description": "A theater group or company, for example, the Royal Shakespeare Company or Druid Theatre.",
"format": "http://schema.org/TheaterGroup",
"title": "TheaterGroup",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/Plumber.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Plumber",
"$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 plumbing service.",
"format": "http://schema.org/Plumber",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Plumber"
}
},
"required": [
"@type"
],
"title": "Plumber",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | schemas/DanceEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/DanceEvent",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "http://schema.org/Event",
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects."
}
],
"description": "Event type: A social dance.",
"title": "DanceEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Recipe.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Recipe",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "HowTo.schema.json",
"description": "Instructions that explain how to achieve a result by performing a sequence of steps."
}
],
"description": "A recipe. For dietary restrictions covered by the recipe, a few common restrictions are enumerated via suitableForDiet. The keywords property can also be used to add more detail.",
"format": "http://schema.org/Recipe",
"properties": {
"cookTime": {
"$ref": "Duration.schema.json",
"description": "The time it takes to actually cook the dish, in ISO 8601 duration format."
},
"cookingMethod": {
"description": "The method of cooking, such as Frying, Steaming, ...",
"format": "http://schema.org/Text"
},
"ingredients": {
"description": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
"format": "http://schema.org/Text"
},
"nutrition": {
"$ref": "NutritionInformation.schema.json",
"description": "Nutrition information about the recipe or menu item."
},
"recipeCategory": {
"description": "The category of the recipe\u2014for example, appetizer, entree, etc.",
"format": "http://schema.org/Text"
},
"recipeCuisine": {
"description": "The cuisine of the recipe (for example, French or Ethiopian).",
"format": "http://schema.org/Text"
},
"recipeIngredient": {
"description": "A single ingredient used in the recipe, e.g. sugar, flour or garlic.",
"format": "http://schema.org/Text"
},
"recipeInstructions": {
"anyOf": [
{
"$ref": "CreativeWork.schema.json"
},
{
"$ref": "ItemList.schema.json"
}
],
"description": "A step in making the recipe, in the form of a single item (document, video, etc.) or an ordered list with HowToStep and/or HowToSection items."
},
"recipeYield": {
"$ref": "QuantitativeValue.schema.json",
"description": "The quantity produced by the recipe (for example, number of people served, number of servings, etc)."
},
"suitableForDiet": {
"description": "Indicates a dietary restriction or guideline for which this recipe or menu item is suitable, e.g. diabetic, halal etc.",
"items": {
"$ref": "RestrictedDiet.schema.json"
},
"type": "array"
}
},
"title": "Recipe",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 804d52988c59583ea5a0208a0ccfa22b31c01f43 | 2020-05-23T02:30:56 | 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": "http://schema.org/FinancialService",
"description": "Financial services business."
}
],
"description": "Bank or credit union.",
"title": "BankOrCreditUnion",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cadd3691264c91598c783327c7e2e9823e41023a | 2020-05-19T23:05:07 | schemas/SendAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/SendAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "TransferAction.schema.json",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another."
}
],
"description": "The act of physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:\n\n\nReceiveAction: The reciprocal of SendAction.\nGiveAction: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).\n\n",
"format": "http://schema.org/SendAction",
"properties": {
"deliveryMethod": {
"description": "A sub property of instrument. The method of delivery.",
"items": {
"$ref": "DeliveryMethod.schema.json"
},
"type": "array"
},
"recipient": {
"description": "A sub property of participant. The participant who is at the receiving end of the action.",
"items": {
"anyOf": [
{
"$ref": "Audience.schema.json"
},
{
"$ref": "ContactPoint.schema.json"
},
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
},
"title": "SendAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb | 2020-05-23T01:54:36 | schemas/Table.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Table",
"$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": "A table on a Web page.",
"format": "http://schema.org/Table",
"title": "Table",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/LoseAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:LoseAction",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:AchieveAction",
"description": "The act of accomplishing something via previous efforts. It is an instantaneous action rather than an ongoing process."
}
],
"description": "The act of being defeated in a competitive activity.",
"properties": {
"winner": {
"description": "A sub property of participant. The winner of the action.",
"oneOf": [
{
"$ref": "schema:Person"
},
{
"items": {
"$ref": "schema:Person"
},
"type": "array"
}
]
}
},
"title": "LoseAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/DeliveryEvent.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:DeliveryEvent",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:Event",
"description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the [[offers]] property. Repeated events may be structured as separate Event objects."
}
],
"description": "An event involving the delivery of an item.",
"properties": {
"accessCode": {
"description": "Password, PIN, or access code needed for delivery (e.g. from a locker).",
"type": "string"
},
"availableFrom": {
"description": "When the item is available for pickup from the store, locker, etc.",
"format": "date-time",
"type": "string"
},
"availableThrough": {
"description": "After this date, the item will no longer be available for pickup.",
"format": "date-time",
"type": "string"
},
"hasDeliveryMethod": {
"$ref": "schema:DeliveryMethod",
"description": "Method used for delivery or shipping."
}
},
"title": "DeliveryEvent",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/Pond.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Pond",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "BodyOfWater.schema.json",
"description": "A body of water, such as a sea, ocean, or lake."
}
],
"description": "A pond.",
"format": "http://schema.org/Pond",
"title": "Pond",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/UserTweets.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/UserTweets",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "UserInteraction.schema.json",
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment."
}
],
"description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment.",
"format": "http://schema.org/UserTweets",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "UserTweets"
}
},
"required": [
"@type"
],
"title": "UserTweets",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/Dataset.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/Dataset",
"$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 body of structured information describing some topic(s) of interest.",
"format": "http://schema.org/Dataset",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "Dataset"
},
"catalog": {
"description": "A data catalog which contains this dataset.",
"oneOf": [
{
"$ref": "DataCatalog.schema.json"
},
{
"items": {
"$ref": "DataCatalog.schema.json"
},
"type": "array"
}
]
},
"datasetTimeInterval": {
"description": "The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).",
"format": "date-time",
"type": "string"
},
"distribution": {
"description": "A downloadable form of this dataset, at a specific location, in a specific format.",
"oneOf": [
{
"$ref": "DataDownload.schema.json"
},
{
"items": {
"$ref": "DataDownload.schema.json"
},
"type": "array"
}
]
},
"includedDataCatalog": {
"description": "A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').",
"oneOf": [
{
"$ref": "DataCatalog.schema.json"
},
{
"items": {
"$ref": "DataCatalog.schema.json"
},
"type": "array"
}
]
},
"includedInDataCatalog": {
"description": "A data catalog which contains this dataset.",
"oneOf": [
{
"$ref": "DataCatalog.schema.json"
},
{
"items": {
"$ref": "DataCatalog.schema.json"
},
"type": "array"
}
]
},
"issn": {
"description": "The International Standard Serial Number (ISSN) that identifies this serial publication. You can repeat this property to identify different formats of, or the linking ISSN (ISSN-L) for, this serial publication.",
"type": "string"
}
},
"required": [
"@type"
],
"title": "Dataset",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e24049d24a7bd3b639876aa7f9a9da997ce29114 | 2020-05-22T22:32:24 | schemas/RiverBodyOfWater.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/RiverBodyOfWater",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "BodyOfWater.schema.json",
"description": "A body of water, such as a sea, ocean, or lake."
}
],
"description": "A river (for example, the broad majestic Shannon).",
"format": "http://schema.org/RiverBodyOfWater",
"title": "RiverBodyOfWater",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | dcbb428317ce07ab8dcff50247c907f15443fb2f | 2020-05-22T20:27:54 | schemas/FoodEstablishment.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/FoodEstablishment",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "LocalBusiness.schema.json",
"description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc."
}
],
"description": "A food-related business.",
"format": "http://schema.org/FoodEstablishment",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "FoodEstablishment"
},
"acceptsReservations": {
"anyOf": [
{
"type": "boolean"
},
{
"format": "uri",
"type": "string"
},
{
"type": "string"
}
],
"description": "Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings Yes or No."
},
"hasMenu": {
"description": "Either the actual menu as a structured representation, as text, or a URL of the menu.",
"oneOf": [
{
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "Menu.schema.json"
}
]
},
{
"items": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "Menu.schema.json"
}
]
},
"type": "array"
}
]
},
"menu": {
"anyOf": [
{
"format": "uri",
"type": "string"
},
{
"type": "string"
},
{
"$ref": "Menu.schema.json"
}
],
"description": "Either the actual menu as a structured representation, as text, or a URL of the menu."
},
"servesCuisine": {
"description": "The cuisine of the restaurant.",
"type": "string"
},
"starRating": {
"description": "An official rating for a lodging business or food establishment, e.g. from national associations or standards bodies. Use the author property to indicate the rating organization, e.g. as an Organization with name such as (e.g. HOTREC, DEHOGA, WHR, or Hotelstars).",
"oneOf": [
{
"$ref": "Rating.schema.json"
},
{
"items": {
"$ref": "Rating.schema.json"
},
"type": "array"
}
]
}
},
"required": [
"@type"
],
"title": "FoodEstablishment",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 6d7567eecede3e8272a2640c2c2081768cb48462 | 2020-05-02T11:06:50 | schemas/AutoRental.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/AutoRental",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "AutomotiveBusiness.schema.json",
"description": "Car repair, sales, or parts."
}
],
"description": "A car rental business.",
"format": "http://schema.org/AutoRental",
"title": "AutoRental",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | schemas/ReturnAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/ReturnAction",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "TransferAction.schema.json",
"description": "The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another."
}
],
"description": "The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).",
"format": "http://schema.org/ReturnAction",
"properties": {
"@context": {
"const": "https://schema.org"
},
"@type": {
"const": "ReturnAction"
},
"recipient": {
"description": "A sub property of participant. The participant who is at the receiving end of the action.",
"items": {
"anyOf": [
{
"$ref": "Audience.schema.json"
},
{
"$ref": "ContactPoint.schema.json"
},
{
"$ref": "Organization.schema.json"
},
{
"$ref": "Person.schema.json"
}
]
},
"type": "array"
}
},
"required": [
"@type"
],
"title": "ReturnAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/ReplyAction.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:ReplyAction",
"$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 responding to a question/message asked/sent by the object. Related to [[AskAction]]\\n\\nRelated actions:\\n\\n* [[AskAction]]: Appears generally as an origin of a ReplyAction.",
"properties": {
"resultComment": {
"description": "A sub property of result. The Comment created or sent as a result of this action.",
"oneOf": [
{
"$ref": "schema:Comment"
},
{
"items": {
"$ref": "schema:Comment"
},
"type": "array"
}
]
}
},
"title": "ReplyAction",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | 836707371bd5157a43e93dd1653717a7f932db13 | 2020-05-11T23:21:31 | schemas/GeoCircle.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "http://schema.org/GeoCircle",
"$schema": "http://json-schema.org/draft-07/schema#",
"allOf": [
{
"$ref": "GeoShape.schema.json",
"description": "The geographic shape of a place. A GeoShape can be described using several properties whose values are based on latitude/longitude pairs. Either whitespace or commas can be used to separate latitude and longitude; whitespace should be used when writing a list of several such points."
}
],
"description": "A GeoCircle is a GeoShape representing a circular geographic area. As it is a GeoShape\n it provides the simple textual property 'circle', but also allows the combination of postalCode alongside geoRadius.\n The center of the circle can be indicated via the 'geoMidpoint' property, or more approximately using 'address', 'postalCode'.",
"format": "http://schema.org/GeoCircle",
"properties": {
"geoMidpoint": {
"description": "Indicates the GeoCoordinates at the centre of a GeoShape e.g. GeoCircle.",
"items": {
"$ref": "GeoCoordinates.schema.json"
},
"type": "array"
},
"geoRadius": {
"description": "Indicates the approximate radius of a GeoCircle (metres unless indicated otherwise via Distance notation).",
"items": {
"format": "https://schema.org/Distance",
"type": "string"
},
"type": "array"
}
},
"title": "GeoCircle",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | e8b1f2cc6ffa01721896e87736f87654885d1475 | 2022-01-02T23:44:21 | schemas/AdultEntertainment.schema.json | 25 | 2024-05-28T05:23:45.146893Z | {
"$id": "schema:AdultEntertainment",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"allOf": [
{
"$ref": "schema:EntertainmentBusiness",
"description": "A business providing entertainment."
}
],
"description": "An adult entertainment establishment.",
"title": "AdultEntertainment",
"type": "object"
} | Apache-2.0 | en |
charlestati/schema-org-json-schemas | cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c | 2020-05-22T20:06:45 | 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.",
"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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.