repository
stringclasses
528 values
commit
stringlengths
40
40
commitDate
timestamp[s]
path
stringlengths
11
149
repoStars
int64
5
94.9k
repoLastFetched
stringclasses
528 values
content
stringlengths
48
736k
license
stringclasses
14 values
language
stringclasses
7 values
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/UpdateAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/UpdateAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Action", "description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\n\nSee also blog post and Actions overview document." } ], "description": "The act of managing by changing/editing the state of the object.", "format": "http://schema.org/UpdateAction", "properties": { "collection": { "description": "A sub property of object. The collection target of the action.", "oneOf": [ { "$ref": "http://schema.org/Thing" }, { "items": { "$ref": "http://schema.org/Thing" }, "type": "array" } ] }, "targetCollection": { "description": "A sub property of object. The collection target of the action.", "oneOf": [ { "$ref": "http://schema.org/Thing" }, { "items": { "$ref": "http://schema.org/Thing" }, "type": "array" } ] } }, "title": "UpdateAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
dcbb428317ce07ab8dcff50247c907f15443fb2f
2020-05-22T20:27:54
schemas/MusicGroup.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MusicGroup", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "PerformingGroup.schema.json", "description": "A performance group, such as a band, an orchestra, or a circus." } ], "description": "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.", "format": "http://schema.org/MusicGroup", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "MusicGroup" }, "album": { "description": "A music album.", "oneOf": [ { "$ref": "MusicAlbum.schema.json" }, { "items": { "$ref": "MusicAlbum.schema.json" }, "type": "array" } ] }, "albums": { "description": "A collection of music albums.", "oneOf": [ { "$ref": "MusicAlbum.schema.json" }, { "items": { "$ref": "MusicAlbum.schema.json" }, "type": "array" } ] }, "genre": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "Genre of the creative work, broadcast channel or group." }, "musicGroupMember": { "description": "A member of a music group\u2014for example, John, Paul, George, or Ringo.", "oneOf": [ { "$ref": "Person.schema.json" }, { "items": { "$ref": "Person.schema.json" }, "type": "array" } ] }, "track": { "description": "A music recording (track)\u2014usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.", "oneOf": [ { "anyOf": [ { "$ref": "ItemList.schema.json" }, { "$ref": "MusicRecording.schema.json" } ] }, { "items": { "anyOf": [ { "$ref": "ItemList.schema.json" }, { "$ref": "MusicRecording.schema.json" } ] }, "type": "array" } ] }, "tracks": { "description": "A music recording (track)\u2014usually a single song.", "oneOf": [ { "$ref": "MusicRecording.schema.json" }, { "items": { "$ref": "MusicRecording.schema.json" }, "type": "array" } ] } }, "required": [ "@type" ], "title": "MusicGroup", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
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": "http://schema.org/AssessAction", "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": { "actionOption": { "description": "A sub property of object. The options subject to this action.", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Thing" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Thing" } ] }, "type": "array" } ] }, "option": { "description": "A sub property of object. The options subject to this action.", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Thing" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/Thing" } ] }, "type": "array" } ] } }, "title": "ChooseAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/RsvpResponseType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/RsvpResponseType", "$schema": "http://json-schema.org/draft-07/schema#", "description": "RsvpResponseType is an enumeration type whose instances represent responding to an RSVP request.", "format": "http://schema.org/RsvpResponseType", "oneOf": [ { "const": "RsvpResponseMaybe", "description": "The invitee may or may not attend." }, { "const": "RsvpResponseNo", "description": "The invitee will not attend." }, { "const": "RsvpResponseYes", "description": "The invitee will attend." } ], "title": "RsvpResponseType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
dcbb428317ce07ab8dcff50247c907f15443fb2f
2020-05-22T20:27:54
schemas/CommentAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CommentAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CommunicateAction.schema.json", "description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation." } ], "description": "The act of generating a comment about a subject.", "format": "http://schema.org/CommentAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "CommentAction" }, "resultComment": { "description": "A sub property of result. The Comment created or sent as a result of this action.", "oneOf": [ { "$ref": "Comment.schema.json" }, { "items": { "$ref": "Comment.schema.json" }, "type": "array" } ] } }, "required": [ "@type" ], "title": "CommentAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/PublicSwimmingPool.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PublicSwimmingPool", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "SportsActivityLocation.schema.json", "description": "A sports location, such as a playing field." } ], "description": "A public swimming pool.", "format": "http://schema.org/PublicSwimmingPool", "title": "PublicSwimmingPool", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
836707371bd5157a43e93dd1653717a7f932db13
2020-05-11T23:21:31
schemas/Permit.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Permit", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Intangible.schema.json", "description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc." } ], "description": "A permit issued by an organization, e.g. a parking pass.", "format": "http://schema.org/Permit", "properties": { "issuedBy": { "$ref": "Organization.schema.json", "description": "The organization issuing the ticket or permit." }, "issuedThrough": { "$ref": "Service.schema.json", "description": "The service through with the permit was granted." }, "permitAudience": { "$ref": "Audience.schema.json", "description": "The target audience for this permit." }, "validFor": { "description": "The duration of validity of a permit or similar thing.", "format": "https://schema.org/Duration", "type": "string" }, "validFrom": { "description": "The date when the item becomes valid.", "format": "http://schema.org/Date" }, "validIn": { "$ref": "AdministrativeArea.schema.json", "description": "The geographic area where a permit or similar thing is valid." }, "validUntil": { "description": "The date when the item is no longer valid.", "format": "http://schema.org/Date" } }, "title": "Permit", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
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": "http://schema.org/CreativeWork", "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.", "properties": { "catalog": { "description": "A data catalog which contains this dataset.", "oneOf": [ { "$ref": "http://schema.org/DataCatalog" }, { "items": { "$ref": "http://schema.org/DataCatalog" }, "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": "http://schema.org/DataDownload" }, { "items": { "$ref": "http://schema.org/DataDownload" }, "type": "array" } ] }, "includedDataCatalog": { "description": "A data catalog which contains this dataset (this property was previously 'catalog', preferred name is now 'includedInDataCatalog').", "oneOf": [ { "$ref": "http://schema.org/DataCatalog" }, { "items": { "$ref": "http://schema.org/DataCatalog" }, "type": "array" } ] }, "includedInDataCatalog": { "description": "A data catalog which contains this dataset.", "oneOf": [ { "$ref": "http://schema.org/DataCatalog" }, { "items": { "$ref": "http://schema.org/DataCatalog" }, "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" } }, "title": "Dataset", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/AskAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AskAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CommunicateAction.schema.json", "description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation." } ], "description": "The act of posing a question / favor to someone.\n\nRelated actions:\n\n\nReplyAction: Appears generally as a response to AskAction.\n\n", "format": "http://schema.org/AskAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "AskAction" }, "question": { "description": "A sub property of object. A question.", "items": { "$ref": "Question.schema.json" }, "type": "array" } }, "required": [ "@type" ], "title": "AskAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/JobPosting.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/JobPosting", "$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 listing that describes a job opening in a certain organization.", "properties": { "baseSalary": { "anyOf": [ { "type": "number" }, { "$ref": "http://schema.org/MonetaryAmount" }, { "$ref": "http://schema.org/PriceSpecification" } ], "description": "The base salary of the job or of an employee in an EmployeeRole." }, "benefits": { "description": "Description of benefits associated with the job.", "type": "string" }, "datePosted": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "Publication date of an online listing." }, "employmentType": { "description": "Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "estimatedSalary": { "description": "An estimated salary for a job posting or occupation, based on a variety of variables including, but not limited to industry, job title, and location. Estimated salaries are often computed by outside organizations rather than the hiring organization, who may not have committed to the estimated value.", "oneOf": [ { "anyOf": [ { "type": "number" }, { "$ref": "http://schema.org/MonetaryAmount" }, { "$ref": "http://schema.org/MonetaryAmountDistribution" } ] }, { "items": { "anyOf": [ { "type": "number" }, { "$ref": "http://schema.org/MonetaryAmount" }, { "$ref": "http://schema.org/MonetaryAmountDistribution" } ] }, "type": "array" } ] }, "experienceRequirements": { "description": "Description of skills and experience needed for the position or Occupation.", "type": "string" }, "hiringOrganization": { "$ref": "http://schema.org/Organization", "description": "Organization offering the job position." }, "incentiveCompensation": { "description": "Description of bonus and commission compensation aspects of the job.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "incentives": { "description": "Description of bonus and commission compensation aspects of the job.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "industry": { "description": "The industry associated with the job position.", "type": "string" }, "jobBenefits": { "description": "Description of benefits associated with the job.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "jobLocation": { "description": "A (typically single) geographic location associated with the job position.", "oneOf": [ { "$ref": "http://schema.org/Place" }, { "items": { "$ref": "http://schema.org/Place" }, "type": "array" } ] }, "relevantOccupation": { "$ref": "http://schema.org/Occupation", "description": "The Occupation for the JobPosting." }, "responsibilities": { "description": "Responsibilities associated with this role or Occupation.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "salaryCurrency": { "description": "The currency (coded using ISO 4217 ) used for the main salary information in this job posting or for this employee.", "type": "string" }, "skills": { "description": "A statement of knowledge, skill, ability, task or any other assertion expressing a competency that is desired or required to fulfill this role or to work in this occupation.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "specialCommitments": { "description": "Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "title": { "description": "The title of the job.", "type": "string" }, "validThrough": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours." }, "workHours": { "description": "The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).", "type": "string" } }, "title": "JobPosting", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/EmployeeRole.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/EmployeeRole", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "OrganizationRole.schema.json", "description": "A subclass of Role used to describe roles within organizations." } ], "description": "A subclass of OrganizationRole used to describe employee relationships.", "format": "http://schema.org/EmployeeRole", "properties": { "baseSalary": { "anyOf": [ { "type": "number" }, { "$ref": "MonetaryAmount.schema.json" }, { "$ref": "PriceSpecification.schema.json" } ], "description": "The base salary of the job or of an employee in an EmployeeRole." }, "salaryCurrency": { "description": "The currency (coded using ISO 4217 ) used for the main salary information in this job posting or for this employee.", "type": "string" } }, "title": "EmployeeRole", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
schemas/LocalBusiness.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/LocalBusiness", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Place.schema.json", "description": "Entities that have a somewhat fixed, physical extension." }, { "$ref": "Organization.schema.json", "description": "An organization such as a school, NGO, corporation, club, etc." } ], "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.", "format": "http://schema.org/LocalBusiness", "properties": { "branchOf": { "$ref": "Organization.schema.json", "description": "The larger organization that this local business is a branch of, if any. Not to be confused with (anatomical)branch." }, "currenciesAccepted": { "description": "The currency accepted.\n\nUse standard formats: ISO 4217 currency format 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" }, "openingHours": { "description": "The general opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.\n\n\nDays are specified using the following two-letter combinations: Mo, Tu, We, Th, Fr, Sa, Su.\nTimes are specified using 24:00 time. For example, 3pm is specified as 15:00. \nHere is an example: <time itemprop=\"openingHours\" datetime=\"Tu,Th 16:00-20:00\">Tuesdays and Thursdays 4-8pm</time>.\nIf a business is open 7 days a week, then it can be specified as <time itemprop=\"openingHours\" datetime=\"Mo-Su\">Monday through Sunday, all day</time>.\n\n", "type": "string" }, "paymentAccepted": { "description": "Cash, Credit Card, Cryptocurrency, Local Exchange Tradings System, etc.", "items": { "type": "string" }, "type": "array" }, "priceRange": { "description": "The price range of the business, for example $$$.", "type": "string" } }, "title": "LocalBusiness", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/CreditCard.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CreditCard", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/LoanOrCredit", "description": "A financial product for the loaning of an amount of money under agreed terms and charges." }, { "$ref": "http://schema.org/PaymentCard", "description": "A payment method using a credit, debit, store or other card to associate the payment with an account." } ], "description": "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\n\nCommonly used values:\n\n\nhttp://purl.org/goodrelations/v1#AmericanExpress\nhttp://purl.org/goodrelations/v1#DinersClub\nhttp://purl.org/goodrelations/v1#Discover\nhttp://purl.org/goodrelations/v1#JCB\nhttp://purl.org/goodrelations/v1#MasterCard\nhttp://purl.org/goodrelations/v1#VISA\n\n", "title": "CreditCard", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/DataDownload.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DataDownload", "$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": "A dataset in downloadable form.", "format": "http://schema.org/DataDownload", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "DataDownload" } }, "required": [ "@type" ], "title": "DataDownload", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Statement.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Statement", "$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 statement about something, for example a fun or interesting fact. If known, the main entity this statement is about, can be indicated using mainEntity. For more formal claims (e.g. in Fact Checking), consider using [[Claim]] instead. Use the [[text]] property to capture the text of the statement.", "title": "Statement", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Collection.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Collection", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:CreativeWork", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A collection of items e.g. creative works or products.", "properties": { "[object Object]": { "description": "", "oneOf": [ { "type": "integer" }, { "items": { "type": "integer" }, "type": "array" } ] } }, "title": "Collection", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/WPHeader.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:WPHeader", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:WebPageElement", "description": "A web page element, like a table or an image." } ], "description": "The header section of the page.", "title": "WPHeader", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
3b9f5eb6c2fa9a07a29aac6eb200a680ae3c385c
2020-05-13T21:31:46
schemas/Course.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Course", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A description of an educational course which may be offered as distinct instances at which take place at different times or take place at different locations, or be offered through different media or modes of study. An educational course is a sequence of one or more educational events and/or creative works which aims to build knowledge, competence or ability of learners.", "format": "http://schema.org/Course", "properties": { "courseCode": { "description": "The identifier for the Course used by the course provider (e.g. CS101 or 6.001).", "type": "string" }, "coursePrerequisites": { "description": "Requirements for taking the Course. May be completion of another Course or a textual description like \"permission of instructor\". Requirements may be a pre-requisite competency, referenced using AlignmentObject.", "items": { "anyOf": [ { "$ref": "Course.schema.json" }, { "$ref": "AlignmentObject.schema.json" }, { "type": "string" } ] }, "type": "array" }, "educationalCredentialAwarded": { "description": "A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course or program.", "items": { "anyOf": [ { "type": "string" }, { "format": "uri", "type": "string" } ] }, "type": "array" }, "hasCourseInstance": { "description": "An offering of the course at a specific time and place or through specific media or mode of study or to a specific section of students.", "items": { "$ref": "CourseInstance.schema.json" }, "type": "array" } }, "title": "Course", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Suite.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Suite", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Accommodation.schema.json", "description": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations." } ], "description": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_(hotel)).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.", "format": "http://schema.org/Suite", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Suite" }, "bed": { "anyOf": [ { "type": "string" }, { "$ref": "BedDetails.schema.json" }, { "$ref": "BedType.schema.json" } ], "description": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property." }, "numberOfRooms": { "anyOf": [ { "type": "number" }, { "$ref": "QuantitativeValue.schema.json" } ], "description": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue." }, "occupancy": { "$ref": "QuantitativeValue.schema.json", "description": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person" } }, "required": [ "@type" ], "title": "Suite", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/BowlingAlley.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BowlingAlley", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "SportsActivityLocation.schema.json", "description": "A sports location, such as a playing field." } ], "description": "A bowling alley.", "format": "http://schema.org/BowlingAlley", "title": "BowlingAlley", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/PaymentStatusType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PaymentStatusType", "$schema": "http://json-schema.org/draft-07/schema#", "description": "A specific payment status. For example, PaymentDue, PaymentComplete, etc.", "format": "http://schema.org/PaymentStatusType", "oneOf": [ { "const": "PaymentAutomaticallyApplied", "description": "An automatic payment system is in place and will be used." }, { "const": "PaymentComplete", "description": "The payment has been received and processed." }, { "const": "PaymentDeclined", "description": "The payee received the payment, but it was declined for some reason." }, { "const": "PaymentDue", "description": "The payment is due, but still within an acceptable time to be received." }, { "const": "PaymentPastDue", "description": "The payment is due and considered late." } ], "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "PaymentStatusType" } }, "required": [ "@type" ], "title": "PaymentStatusType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
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": "http://schema.org/BodyOfWater", "description": "A body of water, such as a sea, ocean, or lake." } ], "description": "A pond.", "title": "Pond", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
schemas/GeoCoordinates.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GeoCoordinates", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "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": "The geographic coordinates of a place or event.", "format": "http://schema.org/GeoCoordinates", "properties": { "address": { "anyOf": [ { "$ref": "PostalAddress.schema.json" }, { "type": "string" } ], "description": "Physical address of the item." }, "addressCountry": { "anyOf": [ { "$ref": "Country.schema.json" }, { "type": "string" } ], "description": "The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code." }, "elevation": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "The elevation of a location (WGS 84). Values may be of the form 'NUMBER UNITOFMEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters." }, "latitude": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "The latitude of a location. For example 37.42242 (WGS 84)." }, "longitude": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "The longitude of a location. For example -122.08585 (WGS 84)." }, "postalCode": { "description": "The postal code. For example, 94043.", "type": "string" } }, "title": "GeoCoordinates", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/HealthTopicContent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:HealthTopicContent", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:WebContent", "description": "WebContent is a type representing all [[WebPage]], [[WebSite]] and [[WebPageElement]] content. It is sometimes the case that detailed distinctions between Web pages, sites and their parts is not always important or obvious. The [[WebContent]] type makes it easier to describe Web-addressable content without requiring such distinctions to always be stated. (The intent is that the existing types [[WebPage]], [[WebSite]] and [[WebPageElement]] will eventually be declared as subtypes of [[WebContent]])." } ], "description": "[[HealthTopicContent]] is [[WebContent]] that is about some aspect of a health topic, e.g. a condition, its symptoms or treatments. Such content may be comprised of several parts or sections and use different types of media. Multiple instances of [[WebContent]] (and hence [[HealthTopicContent]]) can be related using [[hasPart]] / [[isPartOf]] where there is some kind of content hierarchy, and their content described with [[about]] and [[mentions]] e.g. building upon the existing [[MedicalCondition]] vocabulary.\n ", "properties": { "hasHealthAspect": { "description": "Indicates the aspect or aspects specifically addressed in some [[HealthTopicContent]]. For example, that the content is an overview, or that it talks about treatment, self-care, treatments or their side-effects.", "oneOf": [ { "$ref": "schema:HealthAspectEnumeration" }, { "items": { "$ref": "schema:HealthAspectEnumeration" }, "type": "array" } ] } }, "title": "HealthTopicContent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
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", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date when the item becomes valid." }, "validThrough": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours." }, "value": { "anyOf": [ { "type": "boolean" }, { "type": "number" }, { "type": "string" }, { "$ref": "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
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/UserPageVisits.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:UserPageVisits", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:UserInteraction", "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]]." } ], "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", "title": "UserPageVisits", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
b2e53fc058740940d51ae80a92d53c99f0b57ab0
2020-05-12T22:52:12
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": { "oneOf": [ { "$ref": "ListItem.schema.json" }, { "type": "string" }, { "$ref": "Thing.schema.json" } ] }, "type": "array" }, "itemListOrder": { "anyOf": [ { "type": "string" }, { "$ref": "ItemListOrderType.schema.json" } ], "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
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Campground.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Campground", "$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/LodgingBusiness", "description": "A lodging business, such as a motel, hotel, or inn." } ], "description": "A camping site, campsite, or Campground is a place used for overnight stay in the outdoors, typically containing individual CampingPitch locations. \n\nIn British English a campsite is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites (Source: Wikipedia see https://en.wikipedia.org/wiki/Campsite).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.", "format": "http://schema.org/Campground", "title": "Campground", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/ChildCare.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ChildCare", "$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 Childcare center.", "format": "http://schema.org/ChildCare", "title": "ChildCare", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/RadioStation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/RadioStation", "$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 radio station.", "format": "http://schema.org/RadioStation", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "RadioStation" } }, "required": [ "@type" ], "title": "RadioStation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/CheckOutAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CheckOutAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CommunicateAction.schema.json", "description": "The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation." } ], "description": "The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check in) or place (e.g. hotel).\n\nRelated actions:\n\n\nCheckInAction: The antonym of CheckOutAction.\nDepartAction: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\nCancelAction: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.\n\n", "format": "http://schema.org/CheckOutAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "CheckOutAction" } }, "required": [ "@type" ], "title": "CheckOutAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/EndorseAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/EndorseAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/ReactAction", "description": "The act of responding instinctively and emotionally to an object, expressing a sentiment." } ], "description": "An agent approves/certifies/likes/supports/sanction an object.", "properties": { "endorsee": { "description": "A sub property of participant. The person/organization being supported.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Organization" }, { "$ref": "http://schema.org/Person" } ] }, "type": "array" } ] } }, "title": "EndorseAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/TelevisionChannel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TelevisionChannel", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "BroadcastChannel.schema.json", "description": "A unique instance of a BroadcastService on a CableOrSatelliteService lineup." } ], "description": "A unique instance of a television BroadcastService on a CableOrSatelliteService lineup.", "format": "http://schema.org/TelevisionChannel", "title": "TelevisionChannel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Barcode.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Barcode", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:ImageObject", "description": "An image file." } ], "description": "An image of a visual machine-readable code such as a barcode or QR code.", "title": "Barcode", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
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": "http://schema.org/Residence", "description": "The place where a person lives." } ], "description": "Residence type: Apartment complex.", "properties": { "petsAllowed": { "anyOf": [ { "type": "boolean" }, { "type": "string" } ], "description": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value." } }, "title": "ApartmentComplex", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/TaxiService.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TaxiService", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Service", "description": "A service provided by an organization, e.g. delivery service, print services, etc." } ], "description": "A service for a vehicle for hire with a driver for local travel. Fares are usually calculated based on distance traveled.", "title": "TaxiService", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/ItemListOrderType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:ItemListOrderType", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "Enumerated for values for itemListOrder for indicating how an ordered ItemList is organized.", "oneOf": [ { "const": "ItemListOrderAscending", "description": "An ItemList ordered with lower values listed first." }, { "const": "ItemListOrderDescending", "description": "An ItemList ordered with higher values listed first." }, { "const": "ItemListUnordered", "description": "An ItemList ordered with no explicit order." } ], "title": "ItemListOrderType", "type": "string" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/BookSeries.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:BookSeries", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema: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.\n\t " } ], "description": "A series of books. Included books can be indicated with the hasPart property.", "title": "BookSeries", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/InsuranceAgency.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/InsuranceAgency", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "FinancialService.schema.json", "description": "Financial services business." } ], "description": "An Insurance agency.", "format": "http://schema.org/InsuranceAgency", "title": "InsuranceAgency", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/UserCheckins.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:UserCheckins", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:UserInteraction", "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]]." } ], "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", "title": "UserCheckins", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/SendAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:SendAction", "$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 physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:\\n\\n* [[ReceiveAction]]: The reciprocal of SendAction.\\n* [[GiveAction]]: 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).", "properties": { "deliveryMethod": { "description": "A sub property of instrument. The method of delivery.", "oneOf": [ { "$ref": "schema:DeliveryMethod" }, { "items": { "$ref": "schema:DeliveryMethod" }, "type": "array" } ] }, "recipient": { "description": "A sub property of participant. The participant who is at the receiving end of the action.", "oneOf": [ { "anyOf": [ { "$ref": "schema:Audience" }, { "$ref": "schema:ContactPoint" }, { "$ref": "schema:Organization" }, { "$ref": "schema:Person" } ] }, { "items": { "anyOf": [ { "$ref": "schema:Audience" }, { "$ref": "schema:ContactPoint" }, { "$ref": "schema:Organization" }, { "$ref": "schema:Person" } ] }, "type": "array" } ] } }, "title": "SendAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/EmailMessage.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:EmailMessage", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Message", "description": "A single message from a sender to one or more organizations or people." } ], "description": "An email message.", "title": "EmailMessage", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/SearchResultsPage.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SearchResultsPage", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/WebPage", "description": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page." } ], "description": "Web page type: Search results page.", "title": "SearchResultsPage", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Game.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Game", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "The Game type represents things which are games. These are typically rule-governed recreational activities, e.g. role-playing games in which players assume the role of characters in a fictional setting.", "format": "http://schema.org/Game", "properties": { "characterAttribute": { "description": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).", "items": { "$ref": "Thing.schema.json" }, "type": "array" }, "gameItem": { "description": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.", "items": { "$ref": "Thing.schema.json" }, "type": "array" }, "gameLocation": { "description": "Real or fictional location of the game (or part of game).", "items": { "oneOf": [ { "$ref": "Place.schema.json" }, { "$ref": "PostalAddress.schema.json" }, { "format": "uri", "type": "string" } ] }, "type": "array" }, "numberOfPlayers": { "description": "Indicate how many people can play this game (minimum, maximum, or range).", "items": { "$ref": "QuantitativeValue.schema.json" }, "type": "array" }, "quest": { "$ref": "Thing.schema.json", "description": "The task that a player-controlled character, or group of characters may complete in order to gain a reward." } }, "title": "Game", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/Optician.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:Optician", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:MedicalBusiness", "description": "A particular physical or virtual business of an organization for medical purposes. Examples of MedicalBusiness include differents business run by health professionals." } ], "description": "A store that sells reading glasses and similar devices for improving vision.", "title": "Optician", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/EatAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/EatAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ConsumeAction.schema.json", "description": "The act of ingesting information/resources/food." } ], "description": "The act of swallowing solid objects.", "format": "http://schema.org/EatAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "EatAction" } }, "required": [ "@type" ], "title": "EatAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/CookAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:CookAction", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:CreateAction", "description": "The act of deliberately creating/producing/generating/building a result out of the agent." } ], "description": "The act of producing/preparing food.", "properties": { "foodEstablishment": { "description": "A sub property of location. The specific food establishment where the action occurred.", "oneOf": [ { "anyOf": [ { "$ref": "schema:FoodEstablishment" }, { "$ref": "schema:Place" } ] }, { "items": { "anyOf": [ { "$ref": "schema:FoodEstablishment" }, { "$ref": "schema:Place" } ] }, "type": "array" } ] }, "foodEvent": { "description": "A sub property of location. The specific food event where the action occurred.", "oneOf": [ { "$ref": "schema:FoodEvent" }, { "items": { "$ref": "schema:FoodEvent" }, "type": "array" } ] }, "recipe": { "description": "A sub property of instrument. The recipe/instructions used to perform the action.", "oneOf": [ { "$ref": "schema:Recipe" }, { "items": { "$ref": "schema:Recipe" }, "type": "array" } ] } }, "title": "CookAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
836707371bd5157a43e93dd1653717a7f932db13
2020-05-11T23:21:31
schemas/MusicRelease.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MusicRelease", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "MusicPlaylist.schema.json", "description": "A collection of music tracks in playlist form." } ], "description": "A MusicRelease is a specific release of a music album.", "format": "http://schema.org/MusicRelease", "properties": { "catalogNumber": { "description": "The catalog number for the release.", "format": "http://schema.org/Text" }, "creditedTo": { "anyOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "The group the release is credited to if different than the byArtist. For example, Red and Blue is credited to \"Stefani Germanotta Band\", but by Lady Gaga." }, "duration": { "description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.", "format": "https://schema.org/Duration", "type": "string" }, "musicReleaseFormat": { "description": "Format of this release (the type of recording media used, ie. compact disc, digital media, LP, etc.).", "items": { "$ref": "MusicReleaseFormatType.schema.json" }, "type": "array" }, "recordLabel": { "$ref": "Organization.schema.json", "description": "The label that issued the release." }, "releaseOf": { "$ref": "MusicAlbum.schema.json", "description": "The album this is a release of." } }, "title": "MusicRelease", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/DataType.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/DataType", "$schema": "http://json-schema.org/draft-07/schema#", "description": "The basic data types such as Integers, Strings, etc.", "format": "http://schema.org/DataType", "title": "DataType", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/WPSideBar.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/WPSideBar", "$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 sidebar section of the page.", "format": "http://schema.org/WPSideBar", "title": "WPSideBar", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Suite.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Suite", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Accommodation", "description": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations." } ], "description": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_(hotel)).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.", "format": "http://schema.org/Suite", "properties": { "bed": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/BedDetails" }, { "$ref": "http://schema.org/BedType" } ], "description": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property." }, "numberOfRooms": { "anyOf": [ { "type": "number" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue." }, "occupancy": { "$ref": "http://schema.org/QuantitativeValue", "description": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person" } }, "title": "Suite", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
d93f16a26bf98d23eb806d03ccce08d7cf15b99a
2020-05-20T22:06:03
schemas/GeoShape.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/GeoShape", "$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": "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.", "format": "http://schema.org/GeoShape", "properties": { "address": { "anyOf": [ { "type": "string" }, { "$ref": "PostalAddress.schema.json" } ], "description": "Physical address of the item." }, "addressCountry": { "anyOf": [ { "type": "string" }, { "$ref": "Country.schema.json" } ], "description": "The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code." }, "box": { "description": "A box is the area enclosed by the rectangle formed by two points. The first point is the lower corner, the second point is the upper corner. A box is expressed as two points separated by a space character.", "items": { "type": "string" }, "type": "array" }, "circle": { "description": "A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.", "items": { "type": "string" }, "type": "array" }, "elevation": { "anyOf": [ { "type": "number" }, { "type": "string" } ], "description": "The elevation of a location (WGS 84). Values may be of the form 'NUMBER UNITOFMEASUREMENT' (e.g., '1,000 m', '3,200 ft') while numbers alone should be assumed to be a value in meters." }, "line": { "description": "A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.", "items": { "type": "string" }, "type": "array" }, "polygon": { "description": "A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.", "items": { "type": "string" }, "type": "array" }, "postalCode": { "description": "The postal code. For example, 94043.", "type": "string" } }, "title": "GeoShape", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/SoftwareSourceCode.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:SoftwareSourceCode", "$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": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.", "properties": { "codeRepository": { "description": "Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex).", "oneOf": [ { "format": "uri", "type": "string" }, { "items": { "format": "uri", "type": "string" }, "type": "array" } ] }, "codeSampleType": { "description": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "programmingLanguage": { "description": "The computer programming language.", "oneOf": [ { "anyOf": [ { "type": "string" }, { "$ref": "schema:ComputerLanguage" } ] }, { "items": { "anyOf": [ { "type": "string" }, { "$ref": "schema:ComputerLanguage" } ] }, "type": "array" } ] }, "runtime": { "description": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).", "type": "string" }, "runtimePlatform": { "description": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0).", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "sampleType": { "description": "What type of code sample: full (compile ready) solution, code snippet, inline code, scripts, template.", "type": "string" }, "targetProduct": { "description": "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.", "oneOf": [ { "$ref": "schema:SoftwareApplication" }, { "items": { "$ref": "schema:SoftwareApplication" }, "type": "array" } ] } }, "title": "SoftwareSourceCode", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Dentist.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Dentist", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/LocalBusiness", "description": "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc." }, { "$ref": "http://schema.org/MedicalOrganization", "description": "A medical organization (physical or not), such as hospital, institution or clinic." } ], "description": "A dentist.", "title": "Dentist", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/TattooParlor.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TattooParlor", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "HealthAndBeautyBusiness.schema.json", "description": "Health and beauty." } ], "description": "A tattoo parlor.", "format": "http://schema.org/TattooParlor", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "TattooParlor" } }, "required": [ "@type" ], "title": "TattooParlor", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/Mass.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Mass", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "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 Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'.", "format": "http://schema.org/Mass", "title": "Mass", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ApplyAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ApplyAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/OrganizeAction", "description": "The act of manipulating/administering/supervising/controlling one or more objects." } ], "description": "The act of registering to an organization/service without the guarantee to receive it.\n\nRelated actions:\n\n\nRegisterAction: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted.\n\n", "title": "ApplyAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/CampingPitch.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CampingPitch", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Accommodation", "description": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations." } ], "description": "A CampingPitch is an individual place for overnight stay in the outdoors, typically being part of a larger camping site, or Campground.\n\nIn British English a campsite, or campground, is an area, usually divided into a number of pitches, where people can camp overnight using tents or camper vans or caravans; this British English use of the word is synonymous with the American English expression campground. In American English the term campsite generally means an area where an individual, family, group, or military unit can pitch a tent or park a camper; a campground may contain many campsites.\n(Source: Wikipedia see https://en.wikipedia.org/wiki/Campsite).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.", "title": "CampingPitch", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/MovingCompany.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:MovingCompany", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:HomeAndConstructionBusiness", "description": "A construction business.\\n\\nA HomeAndConstructionBusiness is a [[LocalBusiness]] that provides services around homes and buildings.\\n\\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\\(s)." } ], "description": "A moving company.", "title": "MovingCompany", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
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": "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 series of movies. Included movies can be indicated with the hasPart property.", "properties": { "actor": { "description": "An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "actors": { "description": "An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "director": { "$ref": "http://schema.org/Person", "description": "A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip." }, "directors": { "description": "A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.", "oneOf": [ { "$ref": "http://schema.org/Person" }, { "items": { "$ref": "http://schema.org/Person" }, "type": "array" } ] }, "musicBy": { "anyOf": [ { "$ref": "http://schema.org/MusicGroup" }, { "$ref": "http://schema.org/Person" } ], "description": "The composer of the soundtrack." }, "productionCompany": { "$ref": "http://schema.org/Organization", "description": "The production company or studio responsible for the item e.g. series, video game, episode etc." }, "trailer": { "$ref": "http://schema.org/VideoObject", "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
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/TVEpisode.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TVEpisode", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Episode", "description": "A media episode (e.g. TV, radio, video game) which can be part of a series or season." } ], "description": "A TV episode which can be part of a series or season.", "properties": { "countryOfOrigin": { "$ref": "http://schema.org/Country", "description": "The country of the principal offices of the production company or individual responsible for the movie or program." }, "partOfTVSeries": { "$ref": "http://schema.org/TVSeries", "description": "The TV series to which this episode or season belongs." } }, "title": "TVEpisode", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/FlightReservation.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/FlightReservation", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Reservation", "description": "Describes a reservation for travel, dining or an event. Some reservations require tickets. \n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use Offer." } ], "description": "A reservation for air travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use Offer.", "format": "http://schema.org/FlightReservation", "properties": { "boardingGroup": { "description": "The airline-specific indicator of boarding order / preference.", "type": "string" }, "passengerPriorityStatus": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/QualitativeValue" } ], "description": "The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority)." }, "passengerSequenceNumber": { "description": "The passenger's sequence number as assigned by the airline.", "type": "string" }, "securityScreening": { "description": "The type of security screening the passenger is subject to.", "type": "string" } }, "title": "FlightReservation", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/WarrantyScope.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/WarrantyScope", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Enumeration.schema.json", "description": "Lists or enumerations\u2014for example, a list of cuisines or music genres, etc." } ], "description": "A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\n\nCommonly used values:\n\n\nhttp://purl.org/goodrelations/v1#Labor-BringIn\nhttp://purl.org/goodrelations/v1#PartsAndLabor-BringIn\nhttp://purl.org/goodrelations/v1#PartsAndLabor-PickUp\n\n", "format": "http://schema.org/WarrantyScope", "title": "WarrantyScope", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/MediaGallery.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MediaGallery", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CollectionPage.schema.json", "description": "Web page type: Collection page." } ], "description": "Web page type: Media gallery page. A mixed-media page that can contains media such as images, videos, and other multimedia.", "format": "http://schema.org/MediaGallery", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "MediaGallery" } }, "required": [ "@type" ], "title": "MediaGallery", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
schemas/Question.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Question", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreativeWork.schema.json", "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc." } ], "description": "A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.", "format": "http://schema.org/Question", "properties": { "acceptedAnswer": { "anyOf": [ { "$ref": "Answer.schema.json" }, { "$ref": "ItemList.schema.json" } ], "description": "The answer(s) that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author." }, "answerCount": { "description": "The number of answers this question has received.", "type": "integer" }, "downvoteCount": { "description": "The number of downvotes this question, answer or comment has received from the community.", "type": "integer" }, "suggestedAnswer": { "description": "An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.", "items": { "anyOf": [ { "$ref": "Answer.schema.json" }, { "$ref": "ItemList.schema.json" } ] }, "type": "array" }, "upvoteCount": { "description": "The number of upvotes this question, answer or comment has received from the community.", "type": "integer" } }, "title": "Question", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/URL.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/URL", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Text", "description": "Data type: Text." } ], "description": "Data type: URL.", "title": "URL", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/Suite.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Suite", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Accommodation", "description": "An accommodation is a place that can accommodate human beings, e.g. a hotel room, a camping pitch, or a meeting room. Many accommodations are for overnight stays, but this is not a mandatory requirement.\nFor more specific types of accommodations not defined in schema.org, one can use additionalType with external vocabularies.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations." } ], "description": "A suite in a hotel or other public accommodation, denotes a class of luxury accommodations, the key feature of which is multiple rooms (Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Suite_(hotel)).\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.", "properties": { "bed": { "anyOf": [ { "type": "string" }, { "$ref": "http://schema.org/BedDetails" }, { "$ref": "http://schema.org/BedType" } ], "description": "The type of bed or beds included in the accommodation. For the single case of just one bed of a certain type, you use bed directly with a text.\n If you want to indicate the quantity of a certain kind of bed, use an instance of BedDetails. For more detailed information, use the amenityFeature property." }, "numberOfRooms": { "anyOf": [ { "type": "number" }, { "$ref": "http://schema.org/QuantitativeValue" } ], "description": "The number of rooms (excluding bathrooms and closets) of the accommodation or lodging business.\nTypical unit code(s): ROM for room or C62 for no unit. The type of room can be put in the unitText property of the QuantitativeValue." }, "occupancy": { "$ref": "http://schema.org/QuantitativeValue", "description": "The allowed total occupancy for the accommodation in persons (including infants etc). For individual accommodations, this is not necessarily the legal maximum but defines the permitted usage as per the contractual agreement (e.g. a double room used by a single person).\nTypical unit code(s): C62 for person" } }, "title": "Suite", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/HowToTool.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HowToTool", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/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
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/UserBlocks.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:UserBlocks", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:UserInteraction", "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]]." } ], "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use [[Action]]-based vocabulary, alongside types such as [[Comment]].", "title": "UserBlocks", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/Preschool.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Preschool", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "EducationalOrganization.schema.json", "description": "An educational organization." } ], "description": "A preschool.", "format": "http://schema.org/Preschool", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "Preschool" } }, "required": [ "@type" ], "title": "Preschool", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/ProductModel.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ProductModel", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Product.schema.json", "description": "Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online." } ], "description": "A datasheet or vendor specification of a product (in the sense of a prototypical description).", "format": "http://schema.org/ProductModel", "properties": { "isVariantOf": { "description": "A pointer to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive.", "oneOf": [ { "$ref": "ProductModel.schema.json" }, { "items": { "$ref": "ProductModel.schema.json" }, "type": "array" } ] }, "predecessorOf": { "description": "A pointer from a previous, often discontinued variant of the product to its newer variant.", "oneOf": [ { "$ref": "ProductModel.schema.json" }, { "items": { "$ref": "ProductModel.schema.json" }, "type": "array" } ] }, "successorOf": { "description": "A pointer from a newer variant of a product to its previous, often discontinued predecessor.", "oneOf": [ { "$ref": "ProductModel.schema.json" }, { "items": { "$ref": "ProductModel.schema.json" }, "type": "array" } ] } }, "title": "ProductModel", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/OrderAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/OrderAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TradeAction.schema.json", "description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment." } ], "description": "An agent orders an object/product/service to be delivered/sent.", "format": "http://schema.org/OrderAction", "properties": { "deliveryMethod": { "description": "A sub property of instrument. The method of delivery.", "oneOf": [ { "$ref": "DeliveryMethod.schema.json" }, { "items": { "$ref": "DeliveryMethod.schema.json" }, "type": "array" } ] } }, "title": "OrderAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/ReadAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ReadAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ConsumeAction.schema.json", "description": "The act of ingesting information/resources/food." } ], "description": "The act of consuming written content.", "format": "http://schema.org/ReadAction", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "ReadAction" } }, "required": [ "@type" ], "title": "ReadAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/AutoDealer.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:AutoDealer", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:AutomotiveBusiness", "description": "Car repair, sales, or parts." } ], "description": "An car dealership.", "title": "AutoDealer", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/WebApplication.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/WebApplication", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/SoftwareApplication", "description": "A software application." } ], "description": "Web applications.", "format": "http://schema.org/WebApplication", "properties": { "browserRequirements": { "description": "Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.", "type": "string" } }, "title": "WebApplication", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/EndorsementRating.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:EndorsementRating", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Rating", "description": "A rating is an evaluation on a numeric scale, such as 1 to 5 stars." } ], "description": "An EndorsementRating is a rating that expresses some level of endorsement, for example inclusion in a \"critic's pick\" blog, a\n\"Like\" or \"+1\" on a social network. It can be considered the [[result]] of an [[EndorseAction]] in which the [[object]] of the action is rated positively by\nsome [[agent]]. As is common elsewhere in schema.org, it is sometimes more useful to describe the results of such an action without explicitly describing the [[Action]].\n\nAn [[EndorsementRating]] may be part of a numeric scale or organized system, but this is not required: having an explicit type for indicating a positive,\nendorsement rating is particularly useful in the absence of numeric scales as it helps consumers understand that the rating is broadly positive.\n", "title": "EndorsementRating", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/BedAndBreakfast.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BedAndBreakfast", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/LodgingBusiness", "description": "A lodging business, such as a motel, hotel, or inn." } ], "description": "Bed and breakfast.\n\nSee also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.", "title": "BedAndBreakfast", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/OwnershipInfo.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/OwnershipInfo", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "StructuredValue.schema.json", "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing." } ], "description": "A structured value providing information about when a certain organization or person owned a certain product.", "format": "http://schema.org/OwnershipInfo", "properties": { "acquiredFrom": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ], "description": "The organization or person from which the product was acquired." }, "ownedFrom": { "description": "The date and time of obtaining the product.", "format": "date-time", "type": "string" }, "ownedThrough": { "description": "The date and time of giving up ownership on the product.", "format": "date-time", "type": "string" }, "typeOfGood": { "anyOf": [ { "$ref": "Product.schema.json" }, { "$ref": "Service.schema.json" } ], "description": "The product that this structured value is referring to." } }, "title": "OwnershipInfo", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/CookAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/CookAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "CreateAction.schema.json", "description": "The act of deliberately creating/producing/generating/building a result out of the agent." } ], "description": "The act of producing/preparing food.", "format": "http://schema.org/CookAction", "properties": { "foodEstablishment": { "description": "A sub property of location. The specific food establishment where the action occurred.", "oneOf": [ { "anyOf": [ { "$ref": "FoodEstablishment.schema.json" }, { "$ref": "Place.schema.json" } ] }, { "items": { "anyOf": [ { "$ref": "FoodEstablishment.schema.json" }, { "$ref": "Place.schema.json" } ] }, "type": "array" } ] }, "foodEvent": { "description": "A sub property of location. The specific food event where the action occurred.", "oneOf": [ { "$ref": "FoodEvent.schema.json" }, { "items": { "$ref": "FoodEvent.schema.json" }, "type": "array" } ] }, "recipe": { "description": "A sub property of instrument. The recipe/instructions used to perform the action.", "oneOf": [ { "$ref": "Recipe.schema.json" }, { "items": { "$ref": "Recipe.schema.json" }, "type": "array" } ] } }, "title": "CookAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/LeaveAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/LeaveAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/InteractAction", "description": "The act of interacting with another person or organization." } ], "description": "An agent leaves an event / group with participants/friends at a location.\n\nRelated actions:\n\n\nJoinAction: The antonym of LeaveAction.\nUnRegisterAction: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.\n\n", "properties": { "event": { "description": "Upcoming or past event associated with this place, organization, or action.", "oneOf": [ { "$ref": "http://schema.org/Event" }, { "items": { "$ref": "http://schema.org/Event" }, "type": "array" } ] } }, "title": "LeaveAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/SocialEvent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/SocialEvent", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Event.schema.json", "description": "An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the offers property. Repeated events may be structured as separate Event objects." } ], "description": "Event type: Social event.", "format": "http://schema.org/SocialEvent", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "SocialEvent" } }, "required": [ "@type" ], "title": "SocialEvent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
schemas/BroadcastService.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BroadcastService", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Service.schema.json", "description": "A service provided by an organization, e.g. delivery service, print services, etc." } ], "description": "A delivery service through which content is provided via broadcast over the air or online.", "format": "http://schema.org/BroadcastService", "properties": { "area": { "$ref": "Place.schema.json", "description": "The area within which users can expect to reach the broadcast service." }, "broadcastAffiliateOf": { "$ref": "Organization.schema.json", "description": "The media network(s) whose content is broadcast on this station." }, "broadcastDisplayName": { "description": "The name displayed in the channel guide. For many US affiliates, it is the network name.", "type": "string" }, "broadcastFrequency": { "anyOf": [ { "$ref": "BroadcastFrequencySpecification.schema.json" }, { "type": "string" } ], "description": "The frequency used for over-the-air broadcasts. Numeric values or simple ranges e.g. 87-99. In addition a shortcut idiom is supported for frequences of AM and FM radio channels, e.g. \"87 FM\"." }, "broadcastTimezone": { "description": "The timezone in ISO 8601 format for which the service bases its broadcasts", "type": "string" }, "broadcaster": { "$ref": "Organization.schema.json", "description": "The organization owning or operating the broadcast service." }, "hasBroadcastChannel": { "description": "A broadcast channel of a broadcast service.", "items": { "$ref": "BroadcastChannel.schema.json" }, "type": "array" }, "inLanguage": { "anyOf": [ { "$ref": "Language.schema.json" }, { "type": "string" } ], "description": "The language of the content or performance or used in an action. Please use one of the language codes from the IETF BCP 47 standard. See also availableLanguage." }, "parentService": { "description": "A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.", "items": { "$ref": "BroadcastService.schema.json" }, "type": "array" }, "videoFormat": { "description": "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).", "type": "string" } }, "title": "BroadcastService", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/ParkingFacility.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ParkingFacility", "$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 parking lot or other parking facility.", "format": "http://schema.org/ParkingFacility", "title": "ParkingFacility", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/UserPlusOnes.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/UserPlusOnes", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/UserInteraction", "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment." } ], "description": "UserInteraction and its subtypes is an old way of talking about users interacting with pages. It is generally better to use Action-based vocabulary, alongside types such as Comment.", "format": "http://schema.org/UserPlusOnes", "title": "UserPlusOnes", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/ContactPage.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ContactPage", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "WebPage.schema.json", "description": "A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as breadcrumb may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page." } ], "description": "Web page type: Contact page.", "format": "http://schema.org/ContactPage", "title": "ContactPage", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/QuantitativeValue.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/QuantitativeValue", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "StructuredValue.schema.json", "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing." } ], "description": "A point value or interval for product characteristics and other purposes.", "format": "http://schema.org/QuantitativeValue", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "QuantitativeValue" }, "additionalProperty": { "description": "A property-value pair representing an additional characteristics of the entitity, e.g. a product feature or another characteristic for which there is no matching property in schema.org.\n\nNote: Publishers should be aware that applications designed to use specific schema.org properties (e.g. http://schema.org/width, http://schema.org/color, http://schema.org/gtin13, ...) will typically expect such data to be provided using those properties, rather than using the generic property/value mechanism.", "items": { "$ref": "PropertyValue.schema.json" }, "type": "array" }, "maxValue": { "description": "The upper value of some characteristic or property.", "type": "number" }, "minValue": { "description": "The lower value of some characteristic or property.", "type": "number" }, "unitCode": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon." }, "unitText": { "description": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.", "items": { "type": "string" }, "type": "array" }, "value": { "anyOf": [ { "type": "boolean" }, { "type": "number" }, { "type": "string" }, { "$ref": "StructuredValue.schema.json" } ], "description": "The value of the quantitative value or property value node.\n\n\nFor QuantitativeValue and MonetaryAmount, the recommended type for values is 'Number'.\nFor PropertyValue, it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n" }, "valueReference": { "description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.", "items": { "anyOf": [ { "$ref": "Enumeration.schema.json" }, { "$ref": "PropertyValue.schema.json" }, { "$ref": "QualitativeValue.schema.json" }, { "$ref": "QuantitativeValue.schema.json" }, { "$ref": "StructuredValue.schema.json" } ] }, "type": "array" } }, "required": [ "@type" ], "title": "QuantitativeValue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/TipAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TipAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "TradeAction.schema.json", "description": "The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment." } ], "description": "The act of giving money voluntarily to a beneficiary in recognition of services rendered.", "format": "http://schema.org/TipAction", "properties": { "recipient": { "description": "A sub property of participant. The participant who is at the receiving end of the action.", "items": { "oneOf": [ { "$ref": "Person.schema.json" }, { "$ref": "Organization.schema.json" }, { "$ref": "Audience.schema.json" }, { "$ref": "ContactPoint.schema.json" } ] }, "type": "array" } }, "title": "TipAction", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/VideoObject.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/VideoObject", "$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": "A video file.", "format": "http://schema.org/VideoObject", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "VideoObject" }, "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" }, "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." }, "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." }, "thumbnail": { "$ref": "ImageObject.schema.json", "description": "Thumbnail image for an image or video." }, "transcript": { "description": "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.", "type": "string" }, "videoFrameSize": { "description": "The frame size of the video.", "type": "string" }, "videoQuality": { "description": "The quality of the video.", "type": "string" } }, "required": [ "@type" ], "title": "VideoObject", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
804d52988c59583ea5a0208a0ccfa22b31c01f43
2020-05-23T02:30:56
schemas/ScholarlyArticle.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/ScholarlyArticle", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/Article", "description": "An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\n\nSee also blog post." } ], "description": "A scholarly article.", "title": "ScholarlyArticle", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e8b1f2cc6ffa01721896e87736f87654885d1475
2022-01-02T23:44:21
schemas/ApartmentComplex.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "schema:ApartmentComplex", "$schema": "https://json-schema.org/draft/2020-12/schema", "allOf": [ { "$ref": "schema:Residence", "description": "The place where a person lives." } ], "description": "Residence type: Apartment complex.", "properties": { "numberOfAccommodationUnits": { "description": "Indicates the total (available plus unavailable) number of accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAvailableAccommodationUnits]].", "oneOf": [ { "$ref": "schema:QuantitativeValue" }, { "items": { "$ref": "schema:QuantitativeValue" }, "type": "array" } ] }, "numberOfAvailableAccommodationUnits": { "description": "Indicates the number of available accommodation units in an [[ApartmentComplex]], or the number of accommodation units for a specific [[FloorPlan]] (within its specific [[ApartmentComplex]]). See also [[numberOfAccommodationUnits]].", "oneOf": [ { "$ref": "schema:QuantitativeValue" }, { "items": { "$ref": "schema:QuantitativeValue" }, "type": "array" } ] }, "numberOfBedrooms": { "anyOf": [ { "type": "number" }, { "$ref": "schema:QuantitativeValue" } ], "description": "The total integer number of bedrooms in a some [[Accommodation]], [[ApartmentComplex]] or [[FloorPlan]]." }, "petsAllowed": { "anyOf": [ { "type": "boolean" }, { "type": "string" } ], "description": "Indicates whether pets are allowed to enter the accommodation or lodging business. More detailed information can be put in a text value." }, "tourBookingPage": { "description": "A page providing information on how to book a tour of some [[Place]], such as an [[Accommodation]] or [[ApartmentComplex]] in a real estate setting, as well as other kinds of tours as appropriate.", "oneOf": [ { "format": "uri", "type": "string" }, { "items": { "format": "uri", "type": "string" }, "type": "array" } ] } }, "title": "ApartmentComplex", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/MensClothingStore.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/MensClothingStore", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Store.schema.json", "description": "A retail good store." } ], "description": "A men's clothing store.", "format": "http://schema.org/MensClothingStore", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "MensClothingStore" } }, "required": [ "@type" ], "title": "MensClothingStore", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cf09e5607a380dfe3692839d5ca86c0dd9bd6e0c
2020-05-22T20:06:45
schemas/AutoBodyShop.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/AutoBodyShop", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "AutomotiveBusiness.schema.json", "description": "Car repair, sales, or parts." } ], "description": "Auto body shop.", "format": "http://schema.org/AutoBodyShop", "properties": { "@context": { "const": "https://schema.org" }, "@type": { "const": "AutoBodyShop" } }, "required": [ "@type" ], "title": "AutoBodyShop", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/Permit.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Permit", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "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 permit issued by an organization, e.g. a parking pass.", "format": "http://schema.org/Permit", "properties": { "issuedBy": { "$ref": "http://schema.org/Organization", "description": "The organization issuing the ticket or permit." }, "issuedThrough": { "$ref": "http://schema.org/Service", "description": "The service through with the permit was granted." }, "permitAudience": { "$ref": "http://schema.org/Audience", "description": "The target audience for this permit." }, "validFor": { "description": "The duration of validity of a permit or similar thing.", "format": "https://schema.org/Duration", "type": "string" }, "validFrom": { "anyOf": [ { "format": "date", "type": "string" }, { "format": "date-time", "type": "string" } ], "description": "The date when the item becomes valid." }, "validIn": { "$ref": "http://schema.org/AdministrativeArea", "description": "The geographic area where a permit or similar thing is valid." }, "validUntil": { "description": "The date when the item is no longer valid.", "format": "date", "type": "string" } }, "title": "Permit", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
9f4aa4feafda1370cd94ae4c2a70a86f1eb23fcb
2020-05-23T01:54:36
schemas/PropertyValue.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/PropertyValue", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "http://schema.org/StructuredValue", "description": "Structured values are used when the value of a property has a more complex structure than simply being a textual value or a reference to another thing." } ], "description": "A property-value pair, e.g. representing a feature of a product or place. Use the 'name' property for the name of the property. If there is an additional human-readable version of the value, put that into the 'description' property.\n\nAlways use specific schema.org properties when a) they exist and b) you can populate them. Using PropertyValue as a substitute will typically not trigger the same effect as using the original, specific property.", "format": "http://schema.org/PropertyValue", "properties": { "maxValue": { "description": "The upper value of some characteristic or property.", "type": "number" }, "minValue": { "description": "The lower value of some characteristic or property.", "type": "number" }, "propertyID": { "description": "A commonly used identifier for the characteristic represented by the property, e.g. a manufacturer or a standard code for a property. propertyID can be\n(1) a prefixed string, mainly meant to be used with standards for product properties; (2) a site-specific, non-prefixed string (e.g. the primary key of the property or the vendor-specific id of the property), or (3)\na URL indicating the type of the property, either pointing to an external vocabulary, or a Web resource that describes the property (e.g. a glossary entry).\nStandards bodies should promote a standard prefix for the identifiers of properties from their standards.", "oneOf": [ { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, { "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ] }, "type": "array" } ] }, "unitCode": { "anyOf": [ { "format": "uri", "type": "string" }, { "type": "string" } ], "description": "The unit of measurement given using the UN/CEFACT Common Code (3 characters) or a URL. Other codes than the UN/CEFACT Common Code may be used with a prefix followed by a colon." }, "unitText": { "description": "A string or text indicating the unit of measurement. Useful if you cannot provide a standard unit code for\nunitCode.", "oneOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "value": { "anyOf": [ { "type": "boolean" }, { "type": "number" }, { "type": "string" }, { "$ref": "http://schema.org/StructuredValue" } ], "description": "The value of the quantitative value or property value node.\n\n\nFor QuantitativeValue and MonetaryAmount, the recommended type for values is 'Number'.\nFor PropertyValue, it can be 'Text;', 'Number', 'Boolean', or 'StructuredValue'.\nUse values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\nUse '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.\n\n" }, "valueReference": { "description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.", "oneOf": [ { "anyOf": [ { "$ref": "http://schema.org/Enumeration" }, { "$ref": "http://schema.org/PropertyValue" }, { "$ref": "http://schema.org/QualitativeValue" }, { "$ref": "http://schema.org/QuantitativeValue" }, { "$ref": "http://schema.org/StructuredValue" } ] }, { "items": { "anyOf": [ { "$ref": "http://schema.org/Enumeration" }, { "$ref": "http://schema.org/PropertyValue" }, { "$ref": "http://schema.org/QualitativeValue" }, { "$ref": "http://schema.org/QuantitativeValue" }, { "$ref": "http://schema.org/StructuredValue" } ] }, "type": "array" } ] } }, "title": "PropertyValue", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
bff980152b9479eca4d09d407e6df5567a3ebe2e
2020-05-13T21:54:35
schemas/BroadcastEvent.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/BroadcastEvent", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "PublicationEvent.schema.json", "description": "A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media." } ], "description": "An over the air or online broadcast event.", "format": "http://schema.org/BroadcastEvent", "properties": { "broadcastOfEvent": { "$ref": "Event.schema.json", "description": "The event being broadcast such as a sporting event or awards ceremony." }, "isLiveBroadcast": { "description": "True is the broadcast is of a live event.", "type": "boolean" }, "videoFormat": { "description": "The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD, etc.).", "type": "string" } }, "title": "BroadcastEvent", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
cadd3691264c91598c783327c7e2e9823e41023a
2020-05-19T23:05:07
schemas/TrainTrip.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TrainTrip", "$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": "A trip on a commercial train line.", "format": "http://schema.org/TrainTrip", "properties": { "arrivalPlatform": { "description": "The platform where the train arrives.", "type": "string" }, "arrivalStation": { "$ref": "TrainStation.schema.json", "description": "The station where the train trip ends." }, "departurePlatform": { "description": "The platform from which the train departs.", "type": "string" }, "departureStation": { "$ref": "TrainStation.schema.json", "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
d93f16a26bf98d23eb806d03ccce08d7cf15b99a
2020-05-20T22:06:03
schemas/Person.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/Person", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "Thing.schema.json", "description": "The most generic type of item." } ], "description": "A person (alive, dead, undead, or fictional).", "format": "http://schema.org/Person", "properties": { "additionalName": { "description": "An additional name for a Person, can be used for a middle name.", "items": { "type": "string" }, "type": "array" }, "address": { "anyOf": [ { "type": "string" }, { "$ref": "PostalAddress.schema.json" } ], "description": "Physical address of the item." }, "affiliation": { "description": "An organization that this person is affiliated with. For example, a school/university, a club, or a team.", "items": { "$ref": "Organization.schema.json" }, "type": "array" }, "alumniOf": { "description": "An organization that the person is an alumni of.", "items": { "anyOf": [ { "$ref": "EducationalOrganization.schema.json" }, { "$ref": "Organization.schema.json" } ] }, "type": "array" }, "award": { "description": "An award won by or for this item.", "items": { "type": "string" }, "type": "array" }, "awards": { "description": "Awards won by or for this item.", "items": { "type": "string" }, "type": "array" }, "birthDate": { "description": "Date of birth.", "format": "date", "type": "string" }, "birthPlace": { "$ref": "Place.schema.json", "description": "The place where the person was born." }, "brand": { "anyOf": [ { "$ref": "Brand.schema.json" }, { "$ref": "Organization.schema.json" } ], "description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person." }, "children": { "description": "A child of the person.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "colleague": { "description": "A colleague of the person.", "items": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "Person.schema.json" } ] }, "type": "array" }, "colleagues": { "description": "A colleague of the person.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "contactPoint": { "description": "A contact point for a person or organization.", "items": { "$ref": "ContactPoint.schema.json" }, "type": "array" }, "contactPoints": { "description": "A contact point for a person or organization.", "items": { "$ref": "ContactPoint.schema.json" }, "type": "array" }, "deathDate": { "description": "Date of death.", "format": "date", "type": "string" }, "deathPlace": { "$ref": "Place.schema.json", "description": "The place where the person died." }, "duns": { "description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.", "type": "string" }, "email": { "description": "Email address.", "items": { "type": "string" }, "type": "array" }, "familyName": { "description": "Family name. In the U.S., the last name of an Person. This can be used along with givenName instead of the name property.", "type": "string" }, "faxNumber": { "description": "The fax number.", "type": "string" }, "follows": { "description": "The most generic uni-directional social relation.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "funder": { "description": "A person or organization that supports (sponsors) something through some kind of financial contribution.", "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" }, "givenName": { "description": "Given name. In the U.S., the first name of a Person. This can be used along with familyName instead of the name property.", "items": { "type": "string" }, "type": "array" }, "globalLocationNumber": { "description": "The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.", "type": "string" }, "hasOccupation": { "$ref": "Occupation.schema.json", "description": "The Person's occupation. For past professions, use Role for expressing dates." }, "hasOfferCatalog": { "description": "Indicates an OfferCatalog listing for this Organization, Person, or Service.", "items": { "$ref": "OfferCatalog.schema.json" }, "type": "array" }, "hasPOS": { "description": "Points-of-Sales operated by the organization or person.", "items": { "$ref": "Place.schema.json" }, "type": "array" }, "height": { "anyOf": [ { "format": "https://schema.org/Distance", "type": "string" }, { "$ref": "QuantitativeValue.schema.json" } ], "description": "The height of the item." }, "homeLocation": { "description": "A contact location for a person's residence.", "items": { "anyOf": [ { "$ref": "ContactPoint.schema.json" }, { "$ref": "Place.schema.json" } ] }, "type": "array" }, "honorificPrefix": { "description": "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.", "items": { "type": "string" }, "type": "array" }, "honorificSuffix": { "description": "An honorific suffix preceding a Person's name such as M.D. /PhD/MSCSW.", "items": { "type": "string" }, "type": "array" }, "interactionStatistic": { "$ref": "InteractionCounter.schema.json", "description": "The number of interactions for the CreativeWork using the WebSite or SoftwareApplication. The most specific child type of InteractionCounter should be used." }, "isicV4": { "description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.", "type": "string" }, "knows": { "$ref": "Person.schema.json", "description": "The most generic bi-directional social/work relation." }, "makesOffer": { "description": "A pointer to products or services offered by the organization or person.", "items": { "$ref": "Offer.schema.json" }, "type": "array" }, "memberOf": { "description": "An Organization (or ProgramMembership) to which this Person or Organization belongs.", "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "ProgramMembership.schema.json" } ] }, "type": "array" }, "naics": { "description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.", "type": "string" }, "nationality": { "description": "Nationality of the person.", "items": { "$ref": "Country.schema.json" }, "type": "array" }, "netWorth": { "anyOf": [ { "$ref": "MonetaryAmount.schema.json" }, { "$ref": "PriceSpecification.schema.json" } ], "description": "The total financial value of the person as calculated by subtracting assets from liabilities." }, "owns": { "description": "Products owned by the organization or person.", "items": { "anyOf": [ { "$ref": "OwnershipInfo.schema.json" }, { "$ref": "Product.schema.json" } ] }, "type": "array" }, "parent": { "description": "A parent of this person.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "parents": { "description": "A parents of the person.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "performerIn": { "description": "Event that this person is a performer or participant in.", "items": { "$ref": "Event.schema.json" }, "type": "array" }, "publishingPrinciples": { "anyOf": [ { "format": "uri", "type": "string" }, { "$ref": "CreativeWork.schema.json" } ], "description": "The publishingPrinciples property indicates (typically via URL) a document describing the editorial principles of an Organization (or individual e.g. a Person writing a blog) that relate to their activities as a publisher, e.g. ethics or diversity policies. When applied to a CreativeWork (e.g. NewsArticle) the principles are those of the party primarily responsible for the creation of the CreativeWork.\n\nWhile such policies are most typically expressed in natural language, sometimes related information (e.g. indicating a funder) can be expressed using schema.org terminology." }, "relatedTo": { "$ref": "Person.schema.json", "description": "The most generic familial relation." }, "seeks": { "description": "A pointer to products or services sought by the organization or person (demand).", "items": { "$ref": "Demand.schema.json" }, "type": "array" }, "sibling": { "description": "A sibling of the person.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "siblings": { "description": "A sibling of the person.", "items": { "$ref": "Person.schema.json" }, "type": "array" }, "sponsor": { "description": "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event.", "items": { "anyOf": [ { "$ref": "Organization.schema.json" }, { "$ref": "Person.schema.json" } ] }, "type": "array" }, "spouse": { "$ref": "Person.schema.json", "description": "The person's spouse." }, "taxID": { "description": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.", "type": "string" }, "telephone": { "description": "The telephone number.", "type": "string" }, "vatID": { "description": "The Value-added Tax ID of the organization or person.", "type": "string" }, "weight": { "$ref": "QuantitativeValue.schema.json", "description": "The weight of the product or person." }, "workLocation": { "description": "A contact location for a person's place of work.", "items": { "anyOf": [ { "$ref": "ContactPoint.schema.json" }, { "$ref": "Place.schema.json" } ] }, "type": "array" }, "worksFor": { "description": "Organizations that the person works for.", "items": { "$ref": "Organization.schema.json" }, "type": "array" } }, "title": "Person", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/HVACBusiness.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/HVACBusiness", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "HomeAndConstructionBusiness.schema.json", "description": "A construction business.\n\nA HomeAndConstructionBusiness is a LocalBusiness that provides services around homes and buildings.\n\nAs a LocalBusiness it can be described as a provider of one or more Service(s)." } ], "description": "A business that provide Heating, Ventilation and Air Conditioning services.", "format": "http://schema.org/HVACBusiness", "title": "HVACBusiness", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
6d7567eecede3e8272a2640c2c2081768cb48462
2020-05-02T11:06:50
schemas/TennisComplex.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/TennisComplex", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "SportsActivityLocation.schema.json", "description": "A sports location, such as a playing field." } ], "description": "A tennis complex.", "format": "http://schema.org/TennisComplex", "title": "TennisComplex", "type": "object" }
Apache-2.0
en
charlestati/schema-org-json-schemas
e24049d24a7bd3b639876aa7f9a9da997ce29114
2020-05-22T22:32:24
schemas/VoteAction.schema.json
25
2024-05-28T05:23:45.146893Z
{ "$id": "http://schema.org/VoteAction", "$schema": "http://json-schema.org/draft-07/schema#", "allOf": [ { "$ref": "ChooseAction.schema.json", "description": "The act of expressing a preference from a set of options or a large or unbounded set of choices/options." } ], "description": "The act of expressing a preference from a fixed/finite/structured set of choices/options.", "format": "http://schema.org/VoteAction", "properties": { "candidate": { "description": "A sub property of object. The candidate subject of this action.", "oneOf": [ { "$ref": "Person.schema.json" }, { "items": { "$ref": "Person.schema.json" }, "type": "array" } ] } }, "title": "VoteAction", "type": "object" }
Apache-2.0
en