Skip to content

Instantly share code, notes, and snippets.

@jimklo
Created April 18, 2013 21:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jimklo/5416348 to your computer and use it in GitHub Desktop.
Save jimklo/5416348 to your computer and use it in GitHub Desktop.
Schema.org + LRMI JSON Schema
{
"definitions": {
"MedicalSignOrSymptom": {
"title": "Medical Sign or Symptom",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "Any indication of the existence of a medical condition or disease.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalSignOrSymptom",
"http://schema.org/MedicalSign",
"http://schema.org/MedicalSymptom"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"possibleTreatment": {
"items": {
"$ref": "#/definitions/MedicalTherapy"
},
"additionalItems": false,
"type": "array",
"description": "A possible treatment to address this condition, sign or symptom.",
"title": "Possible Treatment"
},
"cause": {
"items": {
"$ref": "#/definitions/MedicalCause"
},
"additionalItems": false,
"type": "array",
"description": "An underlying cause. More specifically, one of the causative agent(s) that are most directly responsible for the pathophysiologic process that eventually results in the occurrence.",
"title": "Cause"
}
}
}
}
}
]
},
"DateTime": {
"title": "Date Time",
"type": "string",
"description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).",
"format": "date-time"
},
"MovieRentalStore": {
"title": "Movie Rental Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A movie rental store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MovieRentalStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"EntertainmentBusiness": {
"title": "Entertainment Business",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A business providing entertainment.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/EntertainmentBusiness",
"http://schema.org/AdultEntertainment",
"http://schema.org/AmusementPark",
"http://schema.org/ArtGallery",
"http://schema.org/Casino",
"http://schema.org/ComedyClub",
"http://schema.org/MovieTheater",
"http://schema.org/NightClub"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"IceCreamShop": {
"title": "Ice Cream Shop",
"anyOf": [
{
"$ref": "#/definitions/FoodEstablishment"
}
],
"description": "An ice cream shop",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/IceCreamShop"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"OfferItemCondition": {
"title": "Offer Item Condition",
"enum": [
"http://schema.org/DamagedCondition",
"http://schema.org/NewCondition",
"http://schema.org/RefurbishedCondition",
"http://schema.org/UsedCondition"
],
"anyOf": [
{
"$ref": "#/definitions/Enumeration"
}
],
"description": "A list of possible conditions for the item for sale.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"BusinessFunction": {
"title": "Business Function",
"anyOf": [
{
"$ref": "#/definitions/Enumeration"
}
],
"description": "The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\n\nCommonly used values:\n\nhttp://purl.org/goodrelations/v1#ConstructionInstallation\nhttp://purl.org/goodrelations/v1#Dispose\nhttp://purl.org/goodrelations/v1#LeaseOut\nhttp://purl.org/goodrelations/v1#Maintain\nhttp://purl.org/goodrelations/v1#ProvideService\nhttp://purl.org/goodrelations/v1#Repair\nhttp://purl.org/goodrelations/v1#Sell\nhttp://purl.org/goodrelations/v1#Buy",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BusinessFunction"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PreventionIndication": {
"title": "Prevention Indication",
"anyOf": [
{
"$ref": "#/definitions/MedicalIndication"
}
],
"description": "An indication for preventing an underlying condition, symptom, etc.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PreventionIndication"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AutomotiveBusiness": {
"title": "Automotive Business",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "Car repair, sales, or parts.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AutomotiveBusiness",
"http://schema.org/AutoBodyShop",
"http://schema.org/AutoDealer",
"http://schema.org/AutoPartsStore",
"http://schema.org/AutoRental",
"http://schema.org/AutoRepair",
"http://schema.org/AutoWash",
"http://schema.org/GasStation",
"http://schema.org/MotorcycleDealer",
"http://schema.org/MotorcycleRepair"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Joint": {
"title": "Joint",
"anyOf": [
{
"$ref": "#/definitions/AnatomicalStructure"
}
],
"description": "The anatomical location at which two or more bones make contact.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Joint"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"functionalClass": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The degree of mobility the joint allows.",
"title": "Functional Class"
},
"structuralClass": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The name given to how bone physically connects to each other.",
"title": "Structural Class"
},
"biomechnicalClass": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The biomechanical properties of the bone.",
"title": "Biomechnical Class"
}
}
}
}
}
]
},
"APIReference": {
"title": "API Reference",
"anyOf": [
{
"$ref": "#/definitions/TechArticle"
}
],
"description": "Reference documentation for application programming interfaces (APIs).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/APIReference"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"assembly": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Library file name e.g., mscorlib.dll, system.web.dll",
"title": "Assembly"
},
"targetPlatform": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Type of app development: phone, Metro style, desktop, XBox, etc.",
"title": "Target Platform"
},
"programmingModel": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Indicates whether API is managed or unmanaged.",
"title": "Programming Model"
},
"assemblyVersion": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Associated product/technology version. e.g., .NET Framework 4.5",
"title": "Assembly Version"
}
}
}
}
}
]
},
"MedicalStudy": {
"title": "Medical Study",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalStudy",
"http://schema.org/MedicalObservationalStudy",
"http://schema.org/MedicalTrial"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"status": {
"items": {
"$ref": "#/definitions/MedicalStudyStatus"
},
"additionalItems": false,
"type": "array",
"description": "The status of the study (enumerated).",
"title": "Status"
},
"studySubject": {
"items": {
"$ref": "#/definitions/MedicalEntity"
},
"additionalItems": false,
"type": "array",
"description": "A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study.",
"title": "Study Subject"
},
"sponsor": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "Sponsor of the study.",
"title": "Sponsor"
},
"studyLocation": {
"items": {
"$ref": "#/definitions/AdministrativeArea"
},
"additionalItems": false,
"type": "array",
"description": "The location in which the study is taking/took place.",
"title": "Study Location"
},
"outcome": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Expected or actual outcomes of the study.",
"title": "Outcome"
},
"population": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Any characteristics of the population used in the study, e.g. 'males under 65'.",
"title": "Population"
}
}
}
}
}
]
},
"GeoCoordinates": {
"title": "Geo Coordinates",
"anyOf": [
{
"$ref": "#/definitions/StructuredValue"
}
],
"description": "The geographic coordinates of a place or event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/GeoCoordinates"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"latitude": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Number"
},
{
"$ref": "#/definitions/Text"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The latitude of a location. For example 37.42242.",
"title": "Latitude"
},
"elevation": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/Number"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The elevation of a location.",
"title": "Elevation"
},
"longitude": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Number"
},
{
"$ref": "#/definitions/Text"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The longitude of a location. For example -122.08585.",
"title": "Longitude"
}
}
}
}
}
]
},
"Physician": {
"title": "Physician",
"anyOf": [
{
"$ref": "#/definitions/MedicalOrganization"
}
],
"description": "A doctor's office.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Physician"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"availableService": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/MedicalTest"
},
{
"$ref": "#/definitions/MedicalProcedure"
},
{
"$ref": "#/definitions/MedicalTherapy"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A medical service available from this provider.",
"title": "Available Service"
},
"hospitalAffiliation": {
"items": {
"$ref": "#/definitions/Hospital"
},
"additionalItems": false,
"type": "array",
"description": "A hospital with which the physician or office is affiliated.",
"title": "Hospital Affiliation"
},
"medicalSpecialty": {
"items": {
"$ref": "#/definitions/MedicalSpecialty"
},
"additionalItems": false,
"type": "array",
"description": "A medical specialty of the provider.",
"title": "Medical Specialty"
}
}
}
}
}
]
},
"StadiumOrArena": {
"title": "Stadium or Arena",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
},
{
"$ref": "#/definitions/SportsActivityLocation"
}
],
"description": "A stadium.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/StadiumOrArena"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Crematorium": {
"title": "Crematorium",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A crematorium.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Crematorium"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ParkingFacility": {
"title": "Parking Facility",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A parking lot or other parking facility.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ParkingFacility"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"UnitPriceSpecification": {
"title": "Unit Price Specification",
"anyOf": [
{
"$ref": "#/definitions/PriceSpecification"
}
],
"description": "The price asked for a given offer by the respective organization or person.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/UnitPriceSpecification"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"billingIncrement": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "This property specifies the minimal quantity and rounding increment that will be the basis for the billing. The unit of measurement is specified by the unitCode property.",
"title": "Billing Increment"
},
"unitCode": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The unit of measurement given using the UN/CEFACT Common Code (3 characters).",
"title": "Unit Code"
},
"priceType": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A short text or acronym indicating multiple price specifications for the same offer, e.g. SRP for the suggested retail price or INVOICE for the invoice price, mostly used in the car industry.",
"title": "Price Type"
}
}
}
}
}
]
},
"Article": {
"title": "Article",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"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.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Article",
"http://schema.org/BlogPosting",
"http://schema.org/NewsArticle",
"http://schema.org/ScholarlyArticle",
"http://schema.org/MedicalScholarlyArticle",
"http://schema.org/TechArticle",
"http://schema.org/APIReference"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"articleBody": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The actual body of the article.",
"title": "Article Body"
},
"wordCount": {
"items": {
"$ref": "#/definitions/Integer"
},
"additionalItems": false,
"type": "array",
"description": "The number of words in the text of the Article.",
"title": "Word Count"
},
"articleSection": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.",
"title": "Article Section"
}
}
}
}
}
]
},
"SaleEvent": {
"title": "Sale Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Sales event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SaleEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"CivicStructure": {
"title": "Civic Structure",
"anyOf": [
{
"$ref": "#/definitions/Place"
}
],
"description": "A public structure, such as a town hall or concert hall.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/CivicStructure",
"http://schema.org/Airport",
"http://schema.org/Aquarium",
"http://schema.org/Beach",
"http://schema.org/BusStation",
"http://schema.org/BusStop",
"http://schema.org/Campground",
"http://schema.org/Cemetery",
"http://schema.org/Crematorium",
"http://schema.org/EventVenue",
"http://schema.org/FireStation",
"http://schema.org/GovernmentBuilding",
"http://schema.org/CityHall",
"http://schema.org/Courthouse",
"http://schema.org/DefenceEstablishment",
"http://schema.org/Embassy",
"http://schema.org/LegislativeBuilding",
"http://schema.org/Hospital",
"http://schema.org/MovieTheater",
"http://schema.org/Museum",
"http://schema.org/MusicVenue",
"http://schema.org/Park",
"http://schema.org/ParkingFacility",
"http://schema.org/PerformingArtsTheater",
"http://schema.org/PlaceOfWorship",
"http://schema.org/BuddhistTemple",
"http://schema.org/CatholicChurch",
"http://schema.org/Church",
"http://schema.org/HinduTemple",
"http://schema.org/Mosque",
"http://schema.org/Synagogue",
"http://schema.org/Playground",
"http://schema.org/PoliceStation",
"http://schema.org/RVPark",
"http://schema.org/StadiumOrArena",
"http://schema.org/SubwayStation",
"http://schema.org/TaxiStand",
"http://schema.org/TrainStation",
"http://schema.org/Zoo"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"openingHours": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "The 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 '-'.- Days are specified using the following two-letter combinations: Mo, Tu, We, Th, Fr, Sa, Su.- Times are specified using 24:00 time. For example, 3pm is specified as 15:00. - Here is an example: <time itemprop=\"openingHours\" datetime=\"Tu,Th 16:00-20:00\">Tuesdays and Thursdays 4-8pm</time>. - If a business is open 7 days a week, then it can be specified as <time itemprop=\"openingHours\" datetime=\"Mo-Su\">Monday through Sunday, all day</time>.",
"title": "Opening Hours"
}
}
}
}
}
]
},
"HardwareStore": {
"title": "Hardware Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A hardware store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/HardwareStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"OpeningHoursSpecification": {
"title": "Opening Hours Specification",
"anyOf": [
{
"$ref": "#/definitions/StructuredValue"
}
],
"description": "A structured value providing information about the opening hours of a place or a certain service inside a place.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/OpeningHoursSpecification"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"dayOfWeek": {
"items": {
"$ref": "#/definitions/DayOfWeek"
},
"additionalItems": false,
"type": "array",
"description": "The day of the week for which these opening hours are valid.",
"title": "Day of Week"
},
"closes": {
"items": {
"$ref": "#/definitions/Time"
},
"additionalItems": false,
"type": "array",
"description": "The closing hour of the place or service on the given day(s) of the week.",
"title": "Closes"
},
"validFrom": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The beginning of the validity of offer, price specification, or opening hours data.",
"title": "Valid From"
},
"validThrough": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The end of the validity of offer, price specification, or opening hours data.",
"title": "Valid Through"
},
"opens": {
"items": {
"$ref": "#/definitions/Time"
},
"additionalItems": false,
"type": "array",
"description": "The opening hour of the place or service on the given day(s) of the week.",
"title": "Opens"
}
}
}
}
}
]
},
"SportsClub": {
"title": "Sports Club",
"anyOf": [
{
"$ref": "#/definitions/SportsActivityLocation"
}
],
"description": "A sports club.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SportsClub"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalProcedure": {
"title": "Medical Procedure",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "A process of care used in either a diagnostic, therapeutic, or palliative capacity that relies on invasive (surgical), non-invasive, or percutaneous techniques.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalProcedure",
"http://schema.org/DiagnosticProcedure",
"http://schema.org/PalliativeProcedure",
"http://schema.org/TherapeuticProcedure"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"followup": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Typical or recommended followup care after the procedure is performed.",
"title": "Followup"
},
"preparation": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Typical preparation that a patient must undergo before having the procedure performed.",
"title": "Preparation"
},
"procedureType": {
"items": {
"$ref": "#/definitions/MedicalProcedureType"
},
"additionalItems": false,
"type": "array",
"description": "The type of procedure, for example Surgical, Noninvasive, or Percutaneous.",
"title": "Procedure Type"
},
"howPerformed": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "How the procedure is performed.",
"title": "How Performed"
}
}
}
}
}
]
},
"BlogPosting": {
"title": "Blog Posting",
"anyOf": [
{
"$ref": "#/definitions/Article"
}
],
"description": "A blog post.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BlogPosting"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ComedyClub": {
"title": "Comedy Club",
"anyOf": [
{
"$ref": "#/definitions/EntertainmentBusiness"
}
],
"description": "A comedy club.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ComedyClub"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"EventVenue": {
"title": "Event Venue",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "An event venue.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/EventVenue"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Recipe": {
"title": "Recipe",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A recipe.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Recipe"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"totalTime": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "The total time it takes to prepare and cook the recipe, in ISO 8601 duration format.",
"title": "Total Time"
},
"nutrition": {
"items": {
"$ref": "#/definitions/NutritionInformation"
},
"additionalItems": false,
"type": "array",
"description": "Nutrition information about the recipe.",
"title": "Nutrition"
},
"ingredients": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "An ingredient used in the recipe.",
"title": "Ingredients"
},
"cookingMethod": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The method of cooking, such as Frying, Steaming, ...",
"title": "Cooking Method"
},
"recipeCuisine": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The cuisine of the recipe (for example, French or Ethopian).",
"title": "Recipe Cuisine"
},
"cookTime": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "The time it takes to actually cook the dish, in ISO 8601 duration format.",
"title": "Cook Time"
},
"recipeYield": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The quantity produced by the recipe (for example, number of people served, number of servings, etc).",
"title": "Recipe Yield"
},
"recipeInstructions": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The steps to make the dish.",
"title": "Recipe Instructions"
},
"recipeCategory": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The category of the recipe\u2014for example, appetizer, entree, etc.",
"title": "Recipe Category"
},
"prepTime": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "The length of time it takes to prepare the recipe, in ISO 8601 duration format.",
"title": "Prep Time"
}
}
}
}
}
]
},
"NightClub": {
"title": "Night Club",
"anyOf": [
{
"$ref": "#/definitions/EntertainmentBusiness"
}
],
"description": "A nightclub or discotheque.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/NightClub"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Ligament": {
"title": "Ligament",
"anyOf": [
{
"$ref": "#/definitions/AnatomicalStructure"
}
],
"description": "A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Ligament"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ElementarySchool": {
"title": "Elementary School",
"anyOf": [
{
"$ref": "#/definitions/EducationalOrganization"
}
],
"description": "An elementary school.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ElementarySchool"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Campground": {
"title": "Campground",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A campground.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Campground"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MovingCompany": {
"title": "Moving Company",
"anyOf": [
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
}
],
"description": "A moving company.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MovingCompany"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Festival": {
"title": "Festival",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Festival.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Festival"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BusinessEntityType": {
"title": "Business Entity Type",
"anyOf": [
{
"$ref": "#/definitions/Enumeration"
}
],
"description": "A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\n\nCommonly used values:\n\nhttp://purl.org/goodrelations/v1#Business\nhttp://purl.org/goodrelations/v1#Enduser\nhttp://purl.org/goodrelations/v1#PublicInstitution\nhttp://purl.org/goodrelations/v1#Reseller",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BusinessEntityType"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MediaObject": {
"title": "Media Object",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "An image, video, or audio object embedded in a web page. 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).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MediaObject",
"http://schema.org/AudioObject",
"http://schema.org/DataDownload",
"http://schema.org/ImageObject",
"http://schema.org/MusicVideoObject",
"http://schema.org/VideoObject"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"contentUrl": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "Actual bytes of the media object, for example the image file or video file. (previous spelling: contentURL)",
"title": "Content Url"
},
"playerType": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Player type required\u2014for example, Flash or Silverlight.",
"title": "Player Type"
},
"encodesCreativeWork": {
"items": {
"$ref": "#/definitions/CreativeWork"
},
"additionalItems": false,
"type": "array",
"description": "The creative work encoded by this media object",
"title": "Encodes Creative Work"
},
"associatedArticle": {
"items": {
"$ref": "#/definitions/NewsArticle"
},
"additionalItems": false,
"type": "array",
"description": "A NewsArticle associated with the Media Object.",
"title": "Associated Article"
},
"expires": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "Date the content expires and is no longer useful or available. Useful for videos.",
"title": "Expires"
},
"height": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Distance"
},
{
"$ref": "#/definitions/QuantitativeValue"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The height of the item.",
"title": "Height"
},
"encodingFormat": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "mp3, mpeg4, etc.",
"title": "Encoding Format"
},
"width": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Distance"
},
{
"$ref": "#/definitions/QuantitativeValue"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The width of the item.",
"title": "Width"
},
"requiresSubscription": {
"items": {
"$ref": "#/definitions/Boolean"
},
"additionalItems": false,
"type": "array",
"description": "Indicates if use of the media require a subscription (either paid or free). Allowed values are true or false (note that an earlier version had 'yes', 'no').",
"title": "Requires Subscription"
},
"uploadDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "Date when this media object was uploaded to this site.",
"title": "Upload Date"
},
"duration": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.",
"title": "Duration"
},
"embedUrl": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "A URL pointing to a player for a specific video. In general, this is the information in the src element of an embed tag and should not be the same as the content of the loc tag. (previous spelling: embedURL)",
"title": "Embed Url"
},
"contentSize": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "File size in (mega/kilo) bytes.",
"title": "Content Size"
},
"bitrate": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The bitrate of the media object.",
"title": "Bitrate"
},
"regionsAllowed": {
"items": {
"$ref": "#/definitions/Place"
},
"additionalItems": false,
"type": "array",
"description": "The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in ISO 3166 format.",
"title": "Regions Allowed"
}
}
}
}
}
]
},
"Enumeration": {
"title": "Enumeration",
"anyOf": [
{
"$ref": "#/definitions/Intangible"
}
],
"description": "Lists or enumerations\u2014for example, a list of cuisines or music genres, etc.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Enumeration",
"http://schema.org/BookFormatType",
"http://schema.org/BusinessEntityType",
"http://schema.org/BusinessFunction",
"http://schema.org/DayOfWeek",
"http://schema.org/DeliveryMethod",
"http://schema.org/ParcelService",
"http://schema.org/ItemAvailability",
"http://schema.org/OfferItemCondition",
"http://schema.org/PaymentMethod",
"http://schema.org/CreditCard",
"http://schema.org/QualitativeValue",
"http://schema.org/Specialty",
"http://schema.org/MedicalSpecialty",
"http://schema.org/WarrantyScope"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"State": {
"title": "State",
"anyOf": [
{
"$ref": "#/definitions/AdministrativeArea"
}
],
"description": "A state or province.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/State"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BikeStore": {
"title": "Bike Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A bike store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BikeStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"TVEpisode": {
"title": "TV Episode",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "An episode of a TV series or season.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TVEpisode"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"episodeNumber": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The episode number.",
"title": "Episode Number"
},
"partOfSeason": {
"items": {
"$ref": "#/definitions/TVSeason"
},
"additionalItems": false,
"type": "array",
"description": "The season to which this episode belongs.",
"title": "Part of Season"
},
"producer": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "The producer of the movie, TV series, season, or episode, or video.",
"title": "Producer"
},
"productionCompany": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "The production company or studio that made the movie, TV series, season, or episode, or video.",
"title": "Production Company"
},
"partOfTVSeries": {
"items": {
"$ref": "#/definitions/TVSeries"
},
"additionalItems": false,
"type": "array",
"description": "The TV series to which this episode or season belongs.",
"title": "Part of TV Series"
},
"musicBy": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Person"
},
{
"$ref": "#/definitions/MusicGroup"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The composer of the movie or TV soundtrack.",
"title": "Music by"
},
"actor": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A cast member of the movie, TV series, season, or episode, or video.",
"title": "Actor"
},
"director": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "The director of the movie, TV episode, or series.",
"title": "Director"
},
"actors": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A cast member of the movie, TV series, season, or episode, or video. (legacy spelling; see singular form, actor)",
"title": "Actors"
},
"trailer": {
"items": {
"$ref": "#/definitions/VideoObject"
},
"additionalItems": false,
"type": "array",
"description": "The trailer of the movie or TV series, season, or episode.",
"title": "Trailer"
}
}
}
}
}
]
},
"DayOfWeek": {
"title": "Day of Week",
"anyOf": [
{
"$ref": "#/definitions/Enumeration"
}
],
"description": "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\n\nCommonly used values:\n\nhttp://purl.org/goodrelations/v1#Monday\nhttp://purl.org/goodrelations/v1#Tuesday\nhttp://purl.org/goodrelations/v1#Wednesday\nhttp://purl.org/goodrelations/v1#Thursday\nhttp://purl.org/goodrelations/v1#Friday\nhttp://purl.org/goodrelations/v1#Saturday\nhttp://purl.org/goodrelations/v1#Sunday\nhttp://purl.org/goodrelations/v1#PublicHolidays",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DayOfWeek"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AggregateOffer": {
"title": "Aggregate Offer",
"anyOf": [
{
"$ref": "#/definitions/Offer"
}
],
"description": "When a single product that has different offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AggregateOffer"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"lowPrice": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Number"
},
{
"$ref": "#/definitions/Text"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The lowest price of all offers available.",
"title": "Low Price"
},
"highPrice": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Number"
},
{
"$ref": "#/definitions/Text"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The highest price of all offers available.",
"title": "High Price"
},
"offerCount": {
"items": {
"$ref": "#/definitions/Integer"
},
"additionalItems": false,
"type": "array",
"description": "The number of offers for the product.",
"title": "Offer Count"
}
}
}
}
}
]
},
"MedicalCause": {
"title": "Medical Cause",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalCause"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"causeOf": {
"items": {
"$ref": "#/definitions/MedicalEntity"
},
"additionalItems": false,
"type": "array",
"description": "The condition, complication, symptom, sign, etc. caused.",
"title": "Cause of"
}
}
}
}
}
]
},
"MedicalContraindication": {
"title": "Medical Contraindication",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but that these risks may be outweighed by other considerations or mitigated by other measures).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalContraindication"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"SingleFamilyResidence": {
"title": "Single Family Residence",
"anyOf": [
{
"$ref": "#/definitions/Residence"
}
],
"description": "Residence type: Single-family home.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SingleFamilyResidence"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"StructuredValue": {
"title": "Structured Value",
"anyOf": [
{
"$ref": "#/definitions/Intangible"
}
],
"description": "Structured values are strings\u2014for example, addresses\u2014that have certain constraints on their structure.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/StructuredValue",
"http://schema.org/ContactPoint",
"http://schema.org/PostalAddress",
"http://schema.org/GeoCoordinates",
"http://schema.org/GeoShape",
"http://schema.org/NutritionInformation",
"http://schema.org/OpeningHoursSpecification",
"http://schema.org/OwnershipInfo",
"http://schema.org/PriceSpecification",
"http://schema.org/DeliveryChargeSpecification",
"http://schema.org/PaymentChargeSpecification",
"http://schema.org/UnitPriceSpecification",
"http://schema.org/QuantitativeValue",
"http://schema.org/TypeAndQuantityNode",
"http://schema.org/WarrantyPromise"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Waterfall": {
"title": "Waterfall",
"anyOf": [
{
"$ref": "#/definitions/BodyOfWater"
}
],
"description": "A waterfall, like Niagara",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Waterfall"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Plumber": {
"title": "Plumber",
"anyOf": [
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
}
],
"description": "A plumbing service.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Plumber"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"UserComments": {
"title": "User Comments",
"anyOf": [
{
"$ref": "#/definitions/UserInteraction"
}
],
"description": "The UserInteraction event in which a user comments on an item.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/UserComments"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"replyToUrl": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "The URL at which a reply may be posted to the specified UserComment.",
"title": "Reply to Url"
},
"commentText": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The text of the UserComment.",
"title": "Comment Text"
},
"discusses": {
"items": {
"$ref": "#/definitions/CreativeWork"
},
"additionalItems": false,
"type": "array",
"description": "Specifies the CreativeWork associated with the UserComment.",
"title": "Discusses"
},
"commentTime": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The time at which the UserComment was made.",
"title": "Comment Time"
},
"creator": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The creator/author of this CreativeWork or UserComments. This is the same as the Author property for CreativeWork.",
"title": "Creator"
}
}
}
}
}
]
},
"TrainStation": {
"title": "Train Station",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A train station.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TrainStation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"WPAdBlock": {
"title": "WP Ad Block",
"anyOf": [
{
"$ref": "#/definitions/WebPageElement"
}
],
"description": "An advertising section of the page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/WPAdBlock"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BarOrPub": {
"title": "Bar or Pub",
"anyOf": [
{
"$ref": "#/definitions/FoodEstablishment"
}
],
"description": "A bar or pub.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BarOrPub"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DDxElement": {
"title": "D Dx Element",
"anyOf": [
{
"$ref": "#/definitions/MedicalIntangible"
}
],
"description": "An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DDxElement"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"distinguishingSign": {
"items": {
"$ref": "#/definitions/MedicalSignOrSymptom"
},
"additionalItems": false,
"type": "array",
"description": "One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis.",
"title": "Distinguishing Sign"
},
"diagnosis": {
"items": {
"$ref": "#/definitions/MedicalCondition"
},
"additionalItems": false,
"type": "array",
"description": "One or more alternative conditions considered in the differential diagnosis process.",
"title": "Diagnosis"
}
}
}
}
}
]
},
"microdata": {
"additionalProperties": false,
"required": [
"type",
"properties"
],
"properties": {
"type": {
"items": {
"type": "string"
},
"additionalItems": false,
"type": "array"
},
"id": {
"type": "string"
},
"properties": {
"patternProperties": {
".*": {
"items": [
{
"anyOf": [
{
"$ref": "#/definitions/microdata"
},
{
"type": "string"
}
]
}
],
"additionalItems": false,
"type": "array"
}
}
}
}
},
"Reservoir": {
"title": "Reservoir",
"anyOf": [
{
"$ref": "#/definitions/BodyOfWater"
}
],
"description": "A reservoir, like the Lake Kariba reservoir.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Reservoir"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Energy": {
"title": "Energy",
"anyOf": [
{
"$ref": "#/definitions/Quantity"
}
],
"description": "Properties that take Enerygy as values are of the form '<Number> <Energy unit of measure>'",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Energy"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalRiskScore": {
"title": "Medical Risk Score",
"anyOf": [
{
"$ref": "#/definitions/MedicalRiskEstimator"
}
],
"description": "A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalRiskScore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"algorithm": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The algorithm or rules to follow to compute the score.",
"title": "Algorithm"
}
}
}
}
}
]
},
"Continent": {
"title": "Continent",
"anyOf": [
{
"$ref": "#/definitions/Landform"
}
],
"description": "One of the continents (for example, Europe or Africa).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Continent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Canal": {
"title": "Canal",
"anyOf": [
{
"$ref": "#/definitions/BodyOfWater"
}
],
"description": "A canal, like the Panama Canal",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Canal"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Mountain": {
"title": "Mountain",
"anyOf": [
{
"$ref": "#/definitions/Landform"
}
],
"description": "A mountain, like Mount Whitney or Mount Everest",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Mountain"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Book": {
"title": "Book",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A book.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Book"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"bookEdition": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The edition of the book.",
"title": "Book Edition"
},
"bookFormat": {
"items": {
"$ref": "#/definitions/BookFormatType"
},
"additionalItems": false,
"type": "array",
"description": "The format of the book.",
"title": "Book Format"
},
"illustrator": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "The illustrator of the book.",
"title": "Illustrator"
},
"isbn": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The ISBN of the book.",
"title": "ISBN"
},
"numberOfPages": {
"items": {
"$ref": "#/definitions/Integer"
},
"additionalItems": false,
"type": "array",
"description": "The number of pages in the book.",
"title": "Number of Pages"
}
}
}
}
}
]
},
"MedicalOrganization": {
"title": "Medical Organization",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A medical organization, such as a doctor's office or clinic.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalOrganization",
"http://schema.org/Dentist",
"http://schema.org/DiagnosticLab",
"http://schema.org/Hospital",
"http://schema.org/MedicalClinic",
"http://schema.org/Optician",
"http://schema.org/Pharmacy",
"http://schema.org/Physician",
"http://schema.org/VeterinaryCare"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Diet": {
"title": "Diet",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
},
{
"$ref": "#/definitions/LifestyleModification"
}
],
"description": "A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Diet"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"physiologicalBenefits": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Specific physiologic benefits associated to the plan.",
"title": "Physiological Benefits"
},
"overview": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Descriptive information establishing the overarching theory/philosophy of the plan. May include the rationale for the name, the population where the plan first came to prominence, etc.",
"title": "Overview"
},
"dietFeatures": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines.",
"title": "Diet Features"
},
"proprietaryName": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Proprietary name given to the diet plan, typically by its originator or creator.",
"title": "Proprietary Name"
},
"expertConsiderations": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Medical expert advice related to the plan.",
"title": "Expert Considerations"
},
"endorsers": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "People or organizations that endorse the plan.",
"title": "Endorsers"
},
"risks": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Specific physiologic risks associated to the plan.",
"title": "Risks"
}
}
}
}
}
]
},
"HobbyShop": {
"title": "Hobby Shop",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A hobby store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/HobbyShop"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"JobPosting": {
"title": "Job Posting",
"anyOf": [
{
"$ref": "#/definitions/Intangible"
}
],
"description": "A listing that describes a job opening in a certain organization.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/JobPosting"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"experienceRequirements": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Description of skills and experience needed for the position.",
"title": "Experience Requirements"
},
"specialCommitments": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.",
"title": "Special Commitments"
},
"benefits": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Description of benefits associated with the job.",
"title": "Benefits"
},
"salaryCurrency": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The currency (coded using ISO 4217, http://en.wikipedia.org/wiki/ISO_4217 used for the main salary information in this job posting.",
"title": "Salary Currency"
},
"title": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The title of the job.",
"title": "Title"
},
"employmentType": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).",
"title": "Employment Type"
},
"qualifications": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Specific qualifications required for this role.",
"title": "Qualifications"
},
"industry": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The industry associated with the job position.",
"title": "Industry"
},
"incentives": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Description of bonus and commission compensation aspects of the job.",
"title": "Incentives"
},
"educationRequirements": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Educational background needed for the position.",
"title": "Education Requirements"
},
"occupationalCategory": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Category or categories describing the job. Use BLS O*NET-SOC taxonomy: http://www.onetcenter.org/taxonomy.html. Ideally includes textual label and formal code, with the property repeated for each applicable value.",
"title": "Occupational Category"
},
"skills": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Skills required to fulfill this role.",
"title": "Skills"
},
"responsibilities": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Responsibilities associated with this role.",
"title": "Responsibilities"
},
"jobLocation": {
"items": {
"$ref": "#/definitions/Place"
},
"additionalItems": false,
"type": "array",
"description": "A (typically single) geographic location associated with the job position.",
"title": "Job Location"
},
"datePosted": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "Publication date for the job posting.",
"title": "Date Posted"
},
"baseSalary": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The base salary of the job.",
"title": "Base Salary"
},
"hiringOrganization": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "Organization offering the job position.",
"title": "Hiring Organization"
},
"workHours": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).",
"title": "Work Hours"
}
}
}
}
}
]
},
"CreativeWork": {
"title": "Creative Work",
"anyOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/CreativeWork",
"http://schema.org/Article",
"http://schema.org/BlogPosting",
"http://schema.org/NewsArticle",
"http://schema.org/ScholarlyArticle",
"http://schema.org/MedicalScholarlyArticle",
"http://schema.org/TechArticle",
"http://schema.org/APIReference",
"http://schema.org/Blog",
"http://schema.org/Book",
"http://schema.org/Code",
"http://schema.org/Comment",
"http://schema.org/DataCatalog",
"http://schema.org/Dataset",
"http://schema.org/Diet",
"http://schema.org/ExercisePlan",
"http://schema.org/ItemList",
"http://schema.org/Map",
"http://schema.org/MediaObject",
"http://schema.org/AudioObject",
"http://schema.org/DataDownload",
"http://schema.org/ImageObject",
"http://schema.org/MusicVideoObject",
"http://schema.org/VideoObject",
"http://schema.org/Movie",
"http://schema.org/MusicPlaylist",
"http://schema.org/MusicAlbum",
"http://schema.org/MusicRecording",
"http://schema.org/Painting",
"http://schema.org/Photograph",
"http://schema.org/Recipe",
"http://schema.org/Review",
"http://schema.org/Sculpture",
"http://schema.org/SoftwareApplication",
"http://schema.org/MobileApplication",
"http://schema.org/WebApplication",
"http://schema.org/TVEpisode",
"http://schema.org/TVSeason",
"http://schema.org/TVSeries",
"http://schema.org/WebPage",
"http://schema.org/AboutPage",
"http://schema.org/CheckoutPage",
"http://schema.org/CollectionPage",
"http://schema.org/ImageGallery",
"http://schema.org/VideoGallery",
"http://schema.org/ContactPage",
"http://schema.org/ItemPage",
"http://schema.org/MedicalWebPage",
"http://schema.org/ProfilePage",
"http://schema.org/SearchResultsPage",
"http://schema.org/WebPageElement",
"http://schema.org/SiteNavigationElement",
"http://schema.org/Table",
"http://schema.org/WPAdBlock",
"http://schema.org/WPFooter",
"http://schema.org/WPHeader",
"http://schema.org/WPSideBar"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"comment": {
"items": {
"$ref": "#/definitions/UserComments"
},
"additionalItems": false,
"type": "array",
"description": "Comments, typically from users, on this CreativeWork.",
"title": "Comment"
},
"copyrightYear": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The year during which the claimed copyright for the CreativeWork was first asserted.",
"title": "Copyright Year"
},
"creator": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The creator/author of this CreativeWork or UserComments. This is the same as the Author property for CreativeWork.",
"title": "Creator"
},
"text": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The textual content of this CreativeWork.",
"title": "Text"
},
"typicalAgeRange": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The typical range of ages the content's intendedEndUser, for example '7-9', '11-'.",
"title": "Typical Age Range"
},
"interactionCount": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A count of a specific user interactions with this item\u2014for example, 20 UserLikes, 5 UserComments, or 300 UserDownloads. The user interaction type should be one of the sub types of UserInteraction.",
"title": "Interaction Count"
},
"datePublished": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "Date of first broadcast/publication.",
"title": "Date Published"
},
"associatedMedia": {
"items": {
"$ref": "#/definitions/MediaObject"
},
"additionalItems": false,
"type": "array",
"description": "The media objects that encode this creative work. This property is a synonym for encodings.",
"title": "Associated Media"
},
"alternativeHeadline": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A secondary title of the CreativeWork.",
"title": "Alternative Headline"
},
"accountablePerson": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "Specifies the Person that is legally accountable for the CreativeWork.",
"title": "Accountable Person"
},
"video": {
"items": {
"$ref": "#/definitions/VideoObject"
},
"additionalItems": false,
"type": "array",
"description": "An embedded video object.",
"title": "Video"
},
"encodings": {
"items": {
"$ref": "#/definitions/MediaObject"
},
"additionalItems": false,
"type": "array",
"description": "The media objects that encode this creative work (legacy spelling; see singular form, encoding).",
"title": "Encodings"
},
"contributor": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A secondary contributor to the CreativeWork.",
"title": "Contributor"
},
"thumbnailUrl": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "A thumbnail image relevant to the Thing.",
"title": "Thumbnail Url"
},
"useRightsUrl": {
"items": {
"$ref": "#/definitions/URL"
},
"type": "array",
"description": "The URL where the owner specifies permissions for using the resource. Ex: \"http://creativecommons.org/licenses/by/3.0/\", \"http://publisher.com/content-use-description\"",
"title": "Use Rights URL"
},
"interactivityType": {
"items": {
"enum": [
"active",
"expositive",
"mixed"
]
},
"additionalItems": false,
"type": "array",
"description": "The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.",
"title": "Interactivity Type"
},
"discussionUrl": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "A link to the page containing the comments of the CreativeWork.",
"title": "Discussion Url"
},
"author": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The author of this content. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.",
"title": "Author"
},
"headline": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Headline of the article",
"title": "Headline"
},
"review": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "A review of the item.",
"title": "Review"
},
"encoding": {
"items": {
"$ref": "#/definitions/MediaObject"
},
"additionalItems": false,
"type": "array",
"description": "A media object that encode this CreativeWork.",
"title": "Encoding"
},
"contentRating": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Official rating of a piece of content\u2014for example,'MPAA PG-13'.",
"title": "Content Rating"
},
"isBasedOnUrl": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html",
"title": "Is Based On Url"
},
"version": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The version of the CreativeWork embodied by a specified resource.",
"title": "Version"
},
"editor": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "Specifies the Person who edited the CreativeWork.",
"title": "Editor"
},
"provider": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Specifies the Person or Organization that distributed the CreativeWork.",
"title": "Provider"
},
"publishingPrinciples": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "Link to page describing the editorial principles of the organization primarily responsible for the creation of the CreativeWork.",
"title": "Publishing Principles"
},
"dateModified": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The date on which the CreativeWork was most recently modified.",
"title": "Date Modified"
},
"educationalAlignment": {
"items": {
"$ref": "#/definitions/AlignmentObject"
},
"additionalItems": false,
"type": "array",
"description": "An alignment to an established educational framework.",
"title": "Educational Alignment"
},
"award": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "An award won by this person or for this creative work.",
"title": "Award"
},
"dateCreated": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The date on which the CreativeWork was created.",
"title": "Date Created"
},
"offers": {
"items": {
"$ref": "#/definitions/Offer"
},
"additionalItems": false,
"type": "array",
"description": "An offer to sell this item\u2014for example, an offer to sell a product, the DVD of a movie, or tickets to an event.",
"title": "Offers"
},
"copyrightHolder": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The party holding the legal copyright to the CreativeWork.",
"title": "Copyright Holder"
},
"awards": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Awards won by this person or for this creative work. (legacy spelling; see singular form, award)",
"title": "Awards"
},
"audience": {
"items": {
"$ref": "#/definitions/Audience"
},
"additionalItems": false,
"type": "array",
"description": "The intended audience of the item, i.e. the group for whom the item was created.",
"title": "Audience"
},
"genre": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Genre of the creative work",
"title": "Genre"
},
"contentLocation": {
"items": {
"$ref": "#/definitions/Place"
},
"additionalItems": false,
"type": "array",
"description": "The location of the content.",
"title": "Content Location"
},
"educationalUse": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The purpose of a work in the context of education; for example, 'assignment', 'group work'.",
"title": "Educational Use"
},
"timeRequired": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'P30M', 'P1H25M'.",
"title": "Time Required"
},
"publisher": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "The publisher of the creative work.",
"title": "Publisher"
},
"about": {
"items": {
"$ref": "#/definitions/Thing"
},
"additionalItems": false,
"type": "array",
"description": "The subject matter of the content.",
"title": "About"
},
"aggregateRating": {
"items": {
"$ref": "#/definitions/AggregateRating"
},
"additionalItems": false,
"type": "array",
"description": "The overall rating, based on a collection of reviews or ratings, of the item.",
"title": "Aggregate Rating"
},
"inLanguage": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The language of the content. please use one of the language codes from the IETF BCP 47 standard.",
"title": "In Language"
},
"reviews": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "Review of the item (legacy spelling; see singular form, review).",
"title": "Reviews"
},
"isFamilyFriendly": {
"items": {
"$ref": "#/definitions/Boolean"
},
"additionalItems": false,
"type": "array",
"description": "Indicates whether this content is family friendly.",
"title": "Is Family Friendly"
},
"learningResourceType": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.",
"title": "Learning Resource Type"
},
"keywords": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The keywords/tags used to describe this content.",
"title": "Keywords"
},
"mentions": {
"items": {
"$ref": "#/definitions/Thing"
},
"additionalItems": false,
"type": "array",
"description": "Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.",
"title": "Mentions"
},
"audio": {
"items": {
"$ref": "#/definitions/AudioObject"
},
"additionalItems": false,
"type": "array",
"description": "An embedded audio object.",
"title": "Audio"
},
"sourceOrganization": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "The Organization on whose behalf the creator was working.",
"title": "Source Organization"
}
}
}
}
}
]
},
"TheaterEvent": {
"title": "Theater Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Theater performance.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TheaterEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ProfessionalService": {
"title": "Professional Service",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "Provider of professional services.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ProfessionalService",
"http://schema.org/AccountingService",
"http://schema.org/Attorney",
"http://schema.org/Dentist",
"http://schema.org/Electrician",
"http://schema.org/GeneralContractor",
"http://schema.org/HousePainter",
"http://schema.org/Locksmith",
"http://schema.org/Notary",
"http://schema.org/Plumber",
"http://schema.org/RoofingContractor"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalRiskFactor": {
"title": "Medical Risk Factor",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalRiskFactor"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"increasesRiskOf": {
"items": {
"$ref": "#/definitions/MedicalEntity"
},
"additionalItems": false,
"type": "array",
"description": "The condition, complication, etc. influenced by this factor.",
"title": "Increases Risk of"
}
}
}
}
}
]
},
"Person": {
"title": "Person",
"anyOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "A person (alive, dead, undead, or fictional).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Person"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"honorificPrefix": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.",
"title": "Honorific Prefix"
},
"follows": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "The most generic uni-directional social relation.",
"title": "Follows"
},
"relatedTo": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "The most generic familial relation.",
"title": "Related to"
},
"interactionCount": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A count of a specific user interactions with this item\u2014for example, 20 UserLikes, 5 UserComments, or 300 UserDownloads. The user interaction type should be one of the sub types of UserInteraction.",
"title": "Interaction Count"
},
"birthDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "Date of birth.",
"title": "Birth Date"
},
"faxNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The fax number.",
"title": "Fax Number"
},
"affiliation": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "An organization that this person is affiliated with. For example, a school/university, a club, or a team.",
"title": "Affiliation"
},
"additionalName": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "An additional name for a Person, can be used for a middle name.",
"title": "Additional Name"
},
"workLocation": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/ContactPoint"
},
{
"$ref": "#/definitions/Place"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A contact location for a person's place of work.",
"title": "Work Location"
},
"gender": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Gender of the person.",
"title": "Gender"
},
"honorificSuffix": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "An honorific suffix preceding a Person's name such as M.D. /PhD/MSCSW.",
"title": "Honorific Suffix"
},
"isicV4": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
"title": "Isic V4"
},
"deathDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "Date of death.",
"title": "Death Date"
},
"worksFor": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "Organizations that the person works for.",
"title": "Works for"
},
"taxID": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
"title": "Tax ID"
},
"children": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A child of the person.",
"title": "Children"
},
"parents": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A parents of the person (legacy spelling; see singular form, parent).",
"title": "Parents"
},
"siblings": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A sibling of the person (legacy spelling; see singular form, sibling).",
"title": "Siblings"
},
"homeLocation": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/ContactPoint"
},
{
"$ref": "#/definitions/Place"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A contact location for a person's residence.",
"title": "Home Location"
},
"email": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Email address.",
"title": "Email"
},
"seeks": {
"items": {
"$ref": "#/definitions/Demand"
},
"additionalItems": false,
"type": "array",
"description": "A pointer to products or services sought by the organization or person (demand).",
"title": "Seeks"
},
"colleague": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A colleague of the person.",
"title": "Colleague"
},
"performerIn": {
"items": {
"$ref": "#/definitions/Event"
},
"additionalItems": false,
"type": "array",
"description": "Event that this person is a performer or participant in.",
"title": "Performer in"
},
"knows": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "The most generic bi-directional social/work relation.",
"title": "Knows"
},
"parent": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A parent of this person.",
"title": "Parent"
},
"jobTitle": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The job title of the person (for example, Financial Manager).",
"title": "Job Title"
},
"brand": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Brand"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.",
"title": "Brand"
},
"familyName": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"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.",
"title": "Family Name"
},
"award": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "An award won by this person or for this creative work.",
"title": "Award"
},
"telephone": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The telephone number.",
"title": "Telephone"
},
"awards": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Awards won by this person or for this creative work. (legacy spelling; see singular form, award)",
"title": "Awards"
},
"address": {
"items": {
"$ref": "#/definitions/PostalAddress"
},
"additionalItems": false,
"type": "array",
"description": "Physical address of the item.",
"title": "Address"
},
"duns": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
"title": "Duns"
},
"nationality": {
"items": {
"$ref": "#/definitions/Country"
},
"additionalItems": false,
"type": "array",
"description": "Nationality of the person.",
"title": "Nationality"
},
"contactPoint": {
"items": {
"$ref": "#/definitions/ContactPoint"
},
"additionalItems": false,
"type": "array",
"description": "A contact point for a person or organization.",
"title": "Contact Point"
},
"spouse": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "The person's spouse.",
"title": "Spouse"
},
"makesOffer": {
"items": {
"$ref": "#/definitions/Offer"
},
"additionalItems": false,
"type": "array",
"description": "A pointer to products or services offered by the organization or person.",
"title": "Makes Offer"
},
"hasPOS": {
"items": {
"$ref": "#/definitions/Place"
},
"additionalItems": false,
"type": "array",
"description": "Points-of-Sales operated by the organization or person.",
"title": "Has POS"
},
"colleagues": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A colleague of the person (legacy spelling; see singular form, colleague).",
"title": "Colleagues"
},
"givenName": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"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.",
"title": "Given Name"
},
"sibling": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A sibling of the person.",
"title": "Sibling"
},
"memberOf": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "An organization to which the person belongs.",
"title": "Member of"
},
"naics": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
"title": "Naics"
},
"owns": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/OwnershipInfo"
},
{
"$ref": "#/definitions/Product"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Products owned by the organization or person.",
"title": "Owns"
},
"vatID": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Value-added Tax ID of the organisation or person.",
"title": "Vat ID"
},
"contactPoints": {
"items": {
"$ref": "#/definitions/ContactPoint"
},
"additionalItems": false,
"type": "array",
"description": "A contact point for a person or organization (legacy spelling; see singular form, contactPoint).",
"title": "Contact Points"
},
"alumniOf": {
"items": {
"$ref": "#/definitions/EducationalOrganization"
},
"additionalItems": false,
"type": "array",
"description": "An educational organizations that the person is an alumni of.",
"title": "Alumni of"
},
"globalLocationNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"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.",
"title": "Global Location Number"
}
}
}
}
}
]
},
"Mass": {
"title": "Mass",
"anyOf": [
{
"$ref": "#/definitions/Quantity"
}
],
"description": "Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Mass"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BusStop": {
"title": "Bus Stop",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A bus stop.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BusStop"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Time": {
"pattern": "\\d{2}:\\d{2}:\\d{2}(Z|[+-]?\\d{2}(:\\d{2})?)?",
"type": "string",
"description": "A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see XML schema for details).",
"title": "Time"
},
"MedicalStudyStatus": {
"title": "Medical Study Status",
"enum": [
"http://schema.org/ActiveNotRecruiting",
"http://schema.org/Completed",
"http://schema.org/EnrollingByInvitation",
"http://schema.org/NotYetRecruiting",
"http://schema.org/Recruiting",
"http://schema.org/ResultsAvailable",
"http://schema.org/ResultsNotAvailable",
"http://schema.org/Suspended",
"http://schema.org/Terminated",
"http://schema.org/Withdrawn"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "The status of a medical study. Enumerated type.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"Painting": {
"title": "Painting",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A painting.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Painting"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Quantity": {
"title": "Quantity",
"anyOf": [
{
"$ref": "#/definitions/Intangible"
}
],
"description": "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Quantity",
"http://schema.org/Distance",
"http://schema.org/Duration",
"http://schema.org/Energy",
"http://schema.org/Mass"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Text": {
"type": "string",
"description": "Data type: Text.",
"title": "Text"
},
"LymphaticVessel": {
"title": "Lymphatic Vessel",
"anyOf": [
{
"$ref": "#/definitions/Vessel"
}
],
"description": "A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/LymphaticVessel"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"regionDrained": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/AnatomicalSystem"
},
{
"$ref": "#/definitions/AnatomicalStructure"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.",
"title": "Region Drained"
},
"runsTo": {
"items": {
"$ref": "#/definitions/Vessel"
},
"additionalItems": false,
"type": "array",
"description": "The vasculature the lymphatic structure runs, or efferents, to.",
"title": "Runs to"
},
"originatesFrom": {
"items": {
"$ref": "#/definitions/Vessel"
},
"additionalItems": false,
"type": "array",
"description": "The vasculature the lymphatic structure originates, or afferents, from.",
"title": "Originates From"
}
}
}
}
}
]
},
"Library": {
"title": "Library",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A library.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Library"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"QualitativeValue": {
"title": "Qualitative Value",
"anyOf": [
{
"$ref": "#/definitions/Enumeration"
}
],
"description": "A predefined value for a product characteristic, e.g. the the power cord plug type \"US\" or the garment sizes \"S\", \"M\", \"L\", and \"XL\"",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/QualitativeValue"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"valueReference": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Enumeration"
},
{
"$ref": "#/definitions/StructuredValue"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.",
"title": "Value Reference"
},
"greater": {
"items": {
"$ref": "#/definitions/QualitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "This ordering relation for qualitative values indicates that the subject is greater than the object.",
"title": "Greater"
},
"lesserOrEqual": {
"items": {
"$ref": "#/definitions/QualitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.",
"title": "Lesser or Equal"
},
"equal": {
"items": {
"$ref": "#/definitions/QualitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "This ordering relation for qualitative values indicates that the subject is equal to the object.",
"title": "Equal"
},
"lesser": {
"items": {
"$ref": "#/definitions/QualitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "This ordering relation for qualitative values indicates that the subject is lesser than the object.",
"title": "Lesser"
},
"greaterOrEqual": {
"items": {
"$ref": "#/definitions/QualitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.",
"title": "Greater or Equal"
},
"nonEqual": {
"items": {
"$ref": "#/definitions/QualitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "This ordering relation for qualitative values indicates that the subject is not equal to the object.",
"title": "Non Equal"
}
}
}
}
}
]
},
"ImagingTest": {
"title": "Imaging Test",
"anyOf": [
{
"$ref": "#/definitions/MedicalTest"
}
],
"description": "Any medical imaging modality typically used for diagnostic purposes.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ImagingTest"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"imagingTechnique": {
"items": {
"$ref": "#/definitions/MedicalImagingTechnique"
},
"additionalItems": false,
"type": "array",
"description": "Imaging technique used.",
"title": "Imaging Technique"
}
}
}
}
}
]
},
"DepartmentStore": {
"title": "Department Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A department store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DepartmentStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AutoDealer": {
"title": "Auto Dealer",
"anyOf": [
{
"$ref": "#/definitions/AutomotiveBusiness"
}
],
"description": "An car dealership.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AutoDealer"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AmusementPark": {
"title": "Amusement Park",
"anyOf": [
{
"$ref": "#/definitions/EntertainmentBusiness"
}
],
"description": "An amusement park.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AmusementPark"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Corporation": {
"title": "Corporation",
"anyOf": [
{
"$ref": "#/definitions/Organization"
}
],
"description": "Organization: A business corporation.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Corporation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"tickerSymbol": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we reccommend using the controlled vocaulary of Market Identifier Codes (MIC) specified in ISO15022.",
"title": "Ticker Symbol"
}
}
}
}
}
]
},
"Motel": {
"title": "Motel",
"anyOf": [
{
"$ref": "#/definitions/LodgingBusiness"
}
],
"description": "A motel.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Motel"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"HousePainter": {
"title": "House Painter",
"anyOf": [
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
}
],
"description": "A house painting service.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/HousePainter"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DeliveryChargeSpecification": {
"title": "Delivery Charge Specification",
"anyOf": [
{
"$ref": "#/definitions/PriceSpecification"
}
],
"description": "The price for the delivery of an offer using a particular delivery method.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DeliveryChargeSpecification"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"eligibleRegion": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/GeoShape"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.",
"title": "Eligible Region"
},
"appliesToDeliveryMethod": {
"items": {
"$ref": "#/definitions/DeliveryMethod"
},
"additionalItems": false,
"type": "array",
"description": "The delivery method(s) to which the delivery charge or payment charge specification applies.",
"title": "Applies to Delivery Method"
}
}
}
}
}
]
},
"Brewery": {
"title": "Brewery",
"anyOf": [
{
"$ref": "#/definitions/FoodEstablishment"
}
],
"description": "Brewery.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Brewery"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"CollegeOrUniversity": {
"title": "College or University",
"anyOf": [
{
"$ref": "#/definitions/EducationalOrganization"
}
],
"description": "A college, university, or other third-level educational institution.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/CollegeOrUniversity"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BedAndBreakfast": {
"title": "Bed And Breakfast",
"anyOf": [
{
"$ref": "#/definitions/LodgingBusiness"
}
],
"description": "Bed and breakfast.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BedAndBreakfast"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Demand": {
"title": "Demand",
"anyOf": [
{
"$ref": "#/definitions/Intangible"
}
],
"description": "A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Demand"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"warranty": {
"items": {
"$ref": "#/definitions/WarrantyPromise"
},
"additionalItems": false,
"type": "array",
"description": "The warranty promise(s) included in the offer.",
"title": "Warranty"
},
"eligibleRegion": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/GeoShape"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.",
"title": "Eligible Region"
},
"businessFunction": {
"items": {
"$ref": "#/definitions/BusinessFunction"
},
"additionalItems": false,
"type": "array",
"description": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.",
"title": "Business Function"
},
"deliveryLeadTime": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The typical delay between the receipt of the order and the goods leaving the warehouse.",
"title": "Delivery Lead Time"
},
"availability": {
"items": {
"$ref": "#/definitions/ItemAvailability"
},
"additionalItems": false,
"type": "array",
"description": "The availability of this item\u2014for example In stock, Out of stock, Pre-order, etc.",
"title": "Availability"
},
"inventoryLevel": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The current approximate inventory level for the item or items.",
"title": "Inventory Level"
},
"availabilityStarts": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The beginning of the availability of the product or service included in the offer.",
"title": "Availability Starts"
},
"gtin14": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The GTIN-14 code of the product, or the product to which the offer refers.",
"title": "Gtin14"
},
"seller": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The seller.",
"title": "Seller"
},
"includesObject": {
"items": {
"$ref": "#/definitions/TypeAndQuantityNode"
},
"additionalItems": false,
"type": "array",
"description": "This links to a node or nodes indicating the exact quantity of the products included in the offer.",
"title": "Includes Object"
},
"eligibleCustomerType": {
"items": {
"$ref": "#/definitions/BusinessEntityType"
},
"additionalItems": false,
"type": "array",
"description": "The type(s) of customers for which the given offer is valid.",
"title": "Eligible Customer Type"
},
"advanceBookingRequirement": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The amount of time that is required between accepting the offer and the actual usage of the resource or service.",
"title": "Advance Booking Requirement"
},
"sku": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
"title": "Sku"
},
"availableAtOrFrom": {
"items": {
"$ref": "#/definitions/Place"
},
"additionalItems": false,
"type": "array",
"description": "The place(s) from which the offer can be obtained (e.g. store locations).",
"title": "Available At or From"
},
"mpn": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
"title": "Mpn"
},
"eligibleDuration": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The duration for which the given offer is valid.",
"title": "Eligible Duration"
},
"priceSpecification": {
"items": {
"$ref": "#/definitions/PriceSpecification"
},
"additionalItems": false,
"type": "array",
"description": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.",
"title": "Price Specification"
},
"acceptedPaymentMethod": {
"items": {
"$ref": "#/definitions/PaymentMethod"
},
"additionalItems": false,
"type": "array",
"description": "The payment method(s) accepted by seller for this offer.",
"title": "Accepted Payment Method"
},
"eligibleTransactionVolume": {
"items": {
"$ref": "#/definitions/PriceSpecification"
},
"additionalItems": false,
"type": "array",
"description": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.",
"title": "Eligible Transaction Volume"
},
"gtin8": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN.",
"title": "Gtin8"
},
"eligibleQuantity": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.",
"title": "Eligible Quantity"
},
"itemCondition": {
"items": {
"$ref": "#/definitions/OfferItemCondition"
},
"additionalItems": false,
"type": "array",
"description": "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.",
"title": "Item Condition"
},
"availabilityEnds": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The end of the availability of the product or service included in the offer.",
"title": "Availability Ends"
},
"serialNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
"title": "Serial Number"
},
"availableDeliveryMethod": {
"items": {
"$ref": "#/definitions/DeliveryMethod"
},
"additionalItems": false,
"type": "array",
"description": "The delivery method(s) available for this offer.",
"title": "Available Delivery Method"
},
"itemOffered": {
"items": {
"$ref": "#/definitions/Product"
},
"additionalItems": false,
"type": "array",
"description": "The item being sold.",
"title": "Item Offered"
},
"gtin13": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero.",
"title": "Gtin13"
},
"validFrom": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The beginning of the validity of offer, price specification, or opening hours data.",
"title": "Valid From"
},
"validThrough": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The end of the validity of offer, price specification, or opening hours data.",
"title": "Valid Through"
}
}
}
}
}
]
},
"ChildrensEvent": {
"title": "Childrens Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Children's event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ChildrensEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"WebPageElement": {
"title": "Web Page Element",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A web page element, like a table or an image",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/WebPageElement",
"http://schema.org/SiteNavigationElement",
"http://schema.org/Table",
"http://schema.org/WPAdBlock",
"http://schema.org/WPFooter",
"http://schema.org/WPHeader",
"http://schema.org/WPSideBar"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DoseSchedule": {
"title": "Dose Schedule",
"anyOf": [
{
"$ref": "#/definitions/MedicalIntangible"
}
],
"description": "A specific dosing schedule for a drug or supplement.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DoseSchedule",
"http://schema.org/MaximumDoseSchedule",
"http://schema.org/RecommendedDoseSchedule",
"http://schema.org/ReportedDoseSchedule"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"doseUnit": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The unit of the dose, e.g. 'mg'.",
"title": "Dose Unit"
},
"targetPopulation": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.",
"title": "Target Population"
},
"doseValue": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The value of the dose, e.g. 500.",
"title": "Dose Value"
},
"frequency": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "How often the dose is taken, e.g. 'daily'.",
"title": "Frequency"
}
}
}
}
}
]
},
"ExerciseGym": {
"title": "Exercise Gym",
"anyOf": [
{
"$ref": "#/definitions/SportsActivityLocation"
}
],
"description": "A gym.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ExerciseGym"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PhysicalTherapy": {
"title": "Physical Therapy",
"anyOf": [
{
"$ref": "#/definitions/MedicalTherapy"
}
],
"description": "A process of progressive physical care and rehabilitation aimed at improving a health condition.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PhysicalTherapy"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"CafeOrCoffeeShop": {
"title": "Cafe or Coffee Shop",
"anyOf": [
{
"$ref": "#/definitions/FoodEstablishment"
}
],
"description": "A cafe or coffee shop.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/CafeOrCoffeeShop"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"VideoGallery": {
"title": "Video Gallery",
"anyOf": [
{
"$ref": "#/definitions/CollectionPage"
}
],
"description": "Web page type: Video gallery page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/VideoGallery"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PostalAddress": {
"title": "Postal Address",
"anyOf": [
{
"$ref": "#/definitions/ContactPoint"
}
],
"description": "The mailing address.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PostalAddress"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"postOfficeBoxNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The post offce box number for PO box addresses.",
"title": "Post Office Box Number"
},
"addressCountry": {
"items": {
"$ref": "#/definitions/Country"
},
"additionalItems": false,
"type": "array",
"description": "The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code.",
"title": "Address Country"
},
"addressLocality": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The locality. For example, Mountain View.",
"title": "Address Locality"
},
"addressRegion": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The region. For example, CA.",
"title": "Address Region"
},
"streetAddress": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The street address. For example, 1600 Amphitheatre Pkwy.",
"title": "Street Address"
},
"postalCode": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The postal code. For example, 94043.",
"title": "Postal Code"
}
}
}
}
}
]
},
"PalliativeProcedure": {
"title": "Palliative Procedure",
"anyOf": [
{
"$ref": "#/definitions/MedicalProcedure"
},
{
"$ref": "#/definitions/MedicalTherapy"
}
],
"description": "A medical procedure intended primarly for palliative purposes, aimed at relieving the symptoms of an underlying health condition.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PalliativeProcedure"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PaymentMethod": {
"title": "Payment Method",
"anyOf": [
{
"$ref": "#/definitions/Enumeration"
}
],
"description": "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\n\nCommonly used values:\n\nhttp://purl.org/goodrelations/v1#ByBankTransferInAdvance\nhttp://purl.org/goodrelations/v1#ByInvoice\nhttp://purl.org/goodrelations/v1#Cash\nhttp://purl.org/goodrelations/v1#CheckInAdvance\nhttp://purl.org/goodrelations/v1#COD\nhttp://purl.org/goodrelations/v1#DirectDebit\nhttp://purl.org/goodrelations/v1#GoogleCheckout\nhttp://purl.org/goodrelations/v1#PayPal\nhttp://purl.org/goodrelations/v1#PaySwarm",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PaymentMethod",
"http://schema.org/CreditCard"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"TechArticle": {
"title": "Tech Article",
"anyOf": [
{
"$ref": "#/definitions/Article"
}
],
"description": "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TechArticle",
"http://schema.org/APIReference"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"proficiencyLevel": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Proficiency needed for this content; expected values: 'Beginner', 'Expert'.",
"title": "Proficiency Level"
},
"dependencies": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Prerequisites needed to fulfill steps in article.",
"title": "Dependencies"
}
}
}
}
}
]
},
"ProductModel": {
"title": "Product Model",
"anyOf": [
{
"$ref": "#/definitions/Product"
}
],
"description": "A datasheet or vendor specification of a product (in the sense of a prototypical description).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ProductModel"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"predecessorOf": {
"items": {
"$ref": "#/definitions/ProductModel"
},
"additionalItems": false,
"type": "array",
"description": "A pointer from a previous, often discontinued variant of the product to its newer variant.",
"title": "Predecessor of"
},
"successorOf": {
"items": {
"$ref": "#/definitions/ProductModel"
},
"additionalItems": false,
"type": "array",
"description": "A pointer from a newer variant of a product to its previous, often discontinued predecessor.",
"title": "Successor of"
},
"isVariantOf": {
"items": {
"$ref": "#/definitions/ProductModel"
},
"additionalItems": false,
"type": "array",
"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.",
"title": "Is Variant of"
}
}
}
}
}
]
},
"Dataset": {
"title": "Dataset",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A body of structured information describing some topic(s) of interest.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Dataset"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"distribution": {
"items": {
"$ref": "#/definitions/DataDownload"
},
"additionalItems": false,
"type": "array",
"description": "A downloadable form of this dataset, at a specific location, in a specific format.",
"title": "Distribution"
},
"catalog": {
"items": {
"$ref": "#/definitions/DataCatalog"
},
"additionalItems": false,
"type": "array",
"description": "A data catalog which contains a dataset.",
"title": "Catalog"
},
"temporal": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"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).",
"title": "Temporal"
},
"spatial": {
"items": {
"$ref": "#/definitions/Place"
},
"additionalItems": false,
"type": "array",
"description": "The range of spatial applicability of a dataset, e.g. for a dataset of New York weather, the state of New York.",
"title": "Spatial"
}
}
}
}
}
]
},
"BankOrCreditUnion": {
"title": "Bank or Credit Union",
"anyOf": [
{
"$ref": "#/definitions/FinancialService"
}
],
"description": "Bank or credit union.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BankOrCreditUnion"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"_Duration": {
"anyOf": [
{
"$ref": "#/definitions/Quantity"
}
],
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Duration"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"VideoObject": {
"title": "Video Object",
"anyOf": [
{
"$ref": "#/definitions/MediaObject"
}
],
"description": "A video file.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/VideoObject"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"videoQuality": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The quality of the video.",
"title": "Video Quality"
},
"productionCompany": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "The production company or studio that made the movie, TV series, season, or episode, or video.",
"title": "Production Company"
},
"thumbnail": {
"items": {
"$ref": "#/definitions/ImageObject"
},
"additionalItems": false,
"type": "array",
"description": "Thumbnail image for an image or video.",
"title": "Thumbnail"
},
"caption": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The caption for this object.",
"title": "Caption"
},
"transcript": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.",
"title": "Transcript"
},
"videoFrameSize": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The frame size of the video.",
"title": "Video Frame Size"
}
}
}
}
}
]
},
"MiddleSchool": {
"title": "Middle School",
"anyOf": [
{
"$ref": "#/definitions/EducationalOrganization"
}
],
"description": "A middle school.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MiddleSchool"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MusicEvent": {
"title": "Music Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Music event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MusicEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Organization": {
"title": "Organization",
"anyOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "An organization such as a school, NGO, corporation, club, etc.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Organization",
"http://schema.org/Corporation",
"http://schema.org/EducationalOrganization",
"http://schema.org/CollegeOrUniversity",
"http://schema.org/ElementarySchool",
"http://schema.org/HighSchool",
"http://schema.org/MiddleSchool",
"http://schema.org/Preschool",
"http://schema.org/School",
"http://schema.org/GovernmentOrganization",
"http://schema.org/LocalBusiness",
"http://schema.org/AnimalShelter",
"http://schema.org/AutomotiveBusiness",
"http://schema.org/AutoBodyShop",
"http://schema.org/AutoDealer",
"http://schema.org/AutoPartsStore",
"http://schema.org/AutoRental",
"http://schema.org/AutoRepair",
"http://schema.org/AutoWash",
"http://schema.org/GasStation",
"http://schema.org/MotorcycleDealer",
"http://schema.org/MotorcycleRepair",
"http://schema.org/ChildCare",
"http://schema.org/DryCleaningOrLaundry",
"http://schema.org/EmergencyService",
"http://schema.org/FireStation",
"http://schema.org/Hospital",
"http://schema.org/PoliceStation",
"http://schema.org/EmploymentAgency",
"http://schema.org/EntertainmentBusiness",
"http://schema.org/AdultEntertainment",
"http://schema.org/AmusementPark",
"http://schema.org/ArtGallery",
"http://schema.org/Casino",
"http://schema.org/ComedyClub",
"http://schema.org/MovieTheater",
"http://schema.org/NightClub",
"http://schema.org/FinancialService",
"http://schema.org/AccountingService",
"http://schema.org/AutomatedTeller",
"http://schema.org/BankOrCreditUnion",
"http://schema.org/InsuranceAgency",
"http://schema.org/FoodEstablishment",
"http://schema.org/Bakery",
"http://schema.org/BarOrPub",
"http://schema.org/Brewery",
"http://schema.org/CafeOrCoffeeShop",
"http://schema.org/FastFoodRestaurant",
"http://schema.org/IceCreamShop",
"http://schema.org/Restaurant",
"http://schema.org/Winery",
"http://schema.org/GovernmentOffice",
"http://schema.org/PostOffice",
"http://schema.org/HealthAndBeautyBusiness",
"http://schema.org/BeautySalon",
"http://schema.org/DaySpa",
"http://schema.org/HairSalon",
"http://schema.org/HealthClub",
"http://schema.org/NailSalon",
"http://schema.org/TattooParlor",
"http://schema.org/HomeAndConstructionBusiness",
"http://schema.org/Electrician",
"http://schema.org/GeneralContractor",
"http://schema.org/HVACBusiness",
"http://schema.org/HousePainter",
"http://schema.org/Locksmith",
"http://schema.org/MovingCompany",
"http://schema.org/Plumber",
"http://schema.org/RoofingContractor",
"http://schema.org/InternetCafe",
"http://schema.org/Library",
"http://schema.org/LodgingBusiness",
"http://schema.org/BedAndBreakfast",
"http://schema.org/Hostel",
"http://schema.org/Hotel",
"http://schema.org/Motel",
"http://schema.org/MedicalOrganization",
"http://schema.org/Dentist",
"http://schema.org/DiagnosticLab",
"http://schema.org/MedicalClinic",
"http://schema.org/Optician",
"http://schema.org/Pharmacy",
"http://schema.org/Physician",
"http://schema.org/VeterinaryCare",
"http://schema.org/ProfessionalService",
"http://schema.org/Attorney",
"http://schema.org/Notary",
"http://schema.org/RadioStation",
"http://schema.org/RealEstateAgent",
"http://schema.org/RecyclingCenter",
"http://schema.org/SelfStorage",
"http://schema.org/ShoppingCenter",
"http://schema.org/SportsActivityLocation",
"http://schema.org/BowlingAlley",
"http://schema.org/ExerciseGym",
"http://schema.org/GolfCourse",
"http://schema.org/PublicSwimmingPool",
"http://schema.org/SkiResort",
"http://schema.org/SportsClub",
"http://schema.org/StadiumOrArena",
"http://schema.org/TennisComplex",
"http://schema.org/Store",
"http://schema.org/BikeStore",
"http://schema.org/BookStore",
"http://schema.org/ClothingStore",
"http://schema.org/ComputerStore",
"http://schema.org/ConvenienceStore",
"http://schema.org/DepartmentStore",
"http://schema.org/ElectronicsStore",
"http://schema.org/Florist",
"http://schema.org/FurnitureStore",
"http://schema.org/GardenStore",
"http://schema.org/GroceryStore",
"http://schema.org/HardwareStore",
"http://schema.org/HobbyShop",
"http://schema.org/HomeGoodsStore",
"http://schema.org/JewelryStore",
"http://schema.org/LiquorStore",
"http://schema.org/MensClothingStore",
"http://schema.org/MobilePhoneStore",
"http://schema.org/MovieRentalStore",
"http://schema.org/MusicStore",
"http://schema.org/OfficeEquipmentStore",
"http://schema.org/OutletStore",
"http://schema.org/PawnShop",
"http://schema.org/PetStore",
"http://schema.org/ShoeStore",
"http://schema.org/SportingGoodsStore",
"http://schema.org/TireShop",
"http://schema.org/ToyStore",
"http://schema.org/WholesaleStore",
"http://schema.org/TelevisionStation",
"http://schema.org/TouristInformationCenter",
"http://schema.org/TravelAgency",
"http://schema.org/NGO",
"http://schema.org/PerformingGroup",
"http://schema.org/DanceGroup",
"http://schema.org/MusicGroup",
"http://schema.org/TheaterGroup",
"http://schema.org/SportsTeam"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"founder": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A person who founded this organization.",
"title": "Founder"
},
"foundingDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The date that this organization was founded.",
"title": "Founding Date"
},
"interactionCount": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A count of a specific user interactions with this item\u2014for example, 20 UserLikes, 5 UserComments, or 300 UserDownloads. The user interaction type should be one of the sub types of UserInteraction.",
"title": "Interaction Count"
},
"faxNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The fax number.",
"title": "Fax Number"
},
"aggregateRating": {
"items": {
"$ref": "#/definitions/AggregateRating"
},
"additionalItems": false,
"type": "array",
"description": "The overall rating, based on a collection of reviews or ratings, of the item.",
"title": "Aggregate Rating"
},
"logo": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/URL"
},
{
"$ref": "#/definitions/ImageObject"
}
]
},
"additionalItems": false,
"type": "array",
"description": "URL of an image for the logo of the item.",
"title": "Logo"
},
"event": {
"items": {
"$ref": "#/definitions/Event"
},
"additionalItems": false,
"type": "array",
"description": "Upcoming or past event associated with this place or organization.",
"title": "Event"
},
"isicV4": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
"title": "Isic V4"
},
"review": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "A review of the item.",
"title": "Review"
},
"taxID": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
"title": "Tax ID"
},
"member": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A member of this organization.",
"title": "Member"
},
"location": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/PostalAddress"
},
{
"$ref": "#/definitions/Place"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The location of the event or organization.",
"title": "Location"
},
"founders": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A person who founded this organization (legacy spelling; see singular form, founder).",
"title": "Founders"
},
"events": {
"items": {
"$ref": "#/definitions/Event"
},
"additionalItems": false,
"type": "array",
"description": "Upcoming or past events associated with this place or organization (legacy spelling; see singular form, event).",
"title": "Events"
},
"seeks": {
"items": {
"$ref": "#/definitions/Demand"
},
"additionalItems": false,
"type": "array",
"description": "A pointer to products or services sought by the organization or person (demand).",
"title": "Seeks"
},
"brand": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Brand"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.",
"title": "Brand"
},
"legalName": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The official name of the organization, e.g. the registered company name.",
"title": "Legal Name"
},
"telephone": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The telephone number.",
"title": "Telephone"
},
"employee": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "Someone working for this organization.",
"title": "Employee"
},
"members": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A member of this organization (legacy spelling; see singular form, member).",
"title": "Members"
},
"address": {
"items": {
"$ref": "#/definitions/PostalAddress"
},
"additionalItems": false,
"type": "array",
"description": "Physical address of the item.",
"title": "Address"
},
"duns": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
"title": "Duns"
},
"contactPoint": {
"items": {
"$ref": "#/definitions/ContactPoint"
},
"additionalItems": false,
"type": "array",
"description": "A contact point for a person or organization.",
"title": "Contact Point"
},
"makesOffer": {
"items": {
"$ref": "#/definitions/Offer"
},
"additionalItems": false,
"type": "array",
"description": "A pointer to products or services offered by the organization or person.",
"title": "Makes Offer"
},
"hasPOS": {
"items": {
"$ref": "#/definitions/Place"
},
"additionalItems": false,
"type": "array",
"description": "Points-of-Sales operated by the organization or person.",
"title": "Has POS"
},
"naics": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
"title": "Naics"
},
"employees": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "People working for this organization. (legacy spelling; see singular form, employee)",
"title": "Employees"
},
"email": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Email address.",
"title": "Email"
},
"reviews": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "Review of the item (legacy spelling; see singular form, review).",
"title": "Reviews"
},
"owns": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/OwnershipInfo"
},
{
"$ref": "#/definitions/Product"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Products owned by the organization or person.",
"title": "Owns"
},
"vatID": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Value-added Tax ID of the organisation or person.",
"title": "Vat ID"
},
"contactPoints": {
"items": {
"$ref": "#/definitions/ContactPoint"
},
"additionalItems": false,
"type": "array",
"description": "A contact point for a person or organization (legacy spelling; see singular form, contactPoint).",
"title": "Contact Points"
},
"globalLocationNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"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.",
"title": "Global Location Number"
}
}
}
}
}
]
},
"EducationalOrganization": {
"title": "Educational Organization",
"anyOf": [
{
"$ref": "#/definitions/Organization"
}
],
"description": "An educational organization.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/EducationalOrganization",
"http://schema.org/CollegeOrUniversity",
"http://schema.org/ElementarySchool",
"http://schema.org/HighSchool",
"http://schema.org/MiddleSchool",
"http://schema.org/Preschool",
"http://schema.org/School"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"alumni": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "Alumni of educational organization.",
"title": "Alumni"
}
}
}
}
}
]
},
"TireShop": {
"title": "Tire Shop",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A tire shop.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TireShop"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ImageObject": {
"title": "Image Object",
"anyOf": [
{
"$ref": "#/definitions/MediaObject"
}
],
"description": "An image file.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ImageObject"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"caption": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The caption for this object.",
"title": "Caption"
},
"exifData": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "exif data for this object.",
"title": "Exif Data"
},
"thumbnail": {
"items": {
"$ref": "#/definitions/ImageObject"
},
"additionalItems": false,
"type": "array",
"description": "Thumbnail image for an image or video.",
"title": "Thumbnail"
},
"representativeOfPage": {
"items": {
"$ref": "#/definitions/Boolean"
},
"additionalItems": false,
"type": "array",
"description": "Indicates whether this image is representative of the content of the page.",
"title": "Representative of Page"
}
}
}
}
}
]
},
"DrugPrescriptionStatus": {
"title": "Drug Prescription Status",
"enum": [
"http://schema.org/OTC",
"http://schema.org/PrescriptionOnly"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Indicates whether this drug is available by prescription or over-the-counter.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"PostOffice": {
"title": "Post Office",
"anyOf": [
{
"$ref": "#/definitions/GovernmentOffice"
}
],
"description": "A post office.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PostOffice"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ApartmentComplex": {
"title": "Apartment Complex",
"anyOf": [
{
"$ref": "#/definitions/Residence"
}
],
"description": "Residence type: Apartment complex.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ApartmentComplex"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PsychologicalTreatment": {
"title": "Psychological Treatment",
"anyOf": [
{
"$ref": "#/definitions/MedicalTherapy"
}
],
"description": "A process of care relying upon counseling, dialogue, communication, verbalization aimed at improving a mental health condition.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PsychologicalTreatment"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Vein": {
"title": "Vein",
"anyOf": [
{
"$ref": "#/definitions/Vessel"
}
],
"description": "A type of blood vessel that specifically carries blood to the heart.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Vein"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"regionDrained": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/AnatomicalSystem"
},
{
"$ref": "#/definitions/AnatomicalStructure"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.",
"title": "Region Drained"
},
"drainsTo": {
"items": {
"$ref": "#/definitions/Vessel"
},
"additionalItems": false,
"type": "array",
"description": "The vasculature that the vein drains into.",
"title": "Drains to"
},
"tributary": {
"items": {
"$ref": "#/definitions/AnatomicalStructure"
},
"additionalItems": false,
"type": "array",
"description": "The anatomical or organ system that the vein flows into; a larger structure that the vein connects to.",
"title": "Tributary"
}
}
}
}
}
]
},
"MedicalAudience": {
"title": "Medical Audience",
"enum": [
"http://schema.org/Clinician",
"http://schema.org/MedicalResearcher",
"http://schema.org/Patient"
],
"anyOf": [
{
"$ref": "#/definitions/PeopleAudience"
},
{
"$ref": "#/definitions/Audience"
},
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Target audiences for medical web pages. Enumerated type.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"URL": {
"title": "URL",
"type": "string",
"description": "Data type: URL.",
"format": "uri"
},
"MedicalIndication": {
"title": "Medical Indication",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalIndication",
"http://schema.org/ApprovedIndication",
"http://schema.org/PreventionIndication",
"http://schema.org/TreatmentIndication"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"LodgingBusiness": {
"title": "Lodging Business",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A lodging business, such as a motel, hotel, or inn.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/LodgingBusiness",
"http://schema.org/BedAndBreakfast",
"http://schema.org/Hostel",
"http://schema.org/Hotel",
"http://schema.org/Motel"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DrugLegalStatus": {
"title": "Drug Legal Status",
"anyOf": [
{
"$ref": "#/definitions/MedicalIntangible"
}
],
"description": "The legal availability status of a medical drug.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DrugLegalStatus"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"applicableLocation": {
"items": {
"$ref": "#/definitions/AdministrativeArea"
},
"additionalItems": false,
"type": "array",
"description": "The location in which the status applies.",
"title": "Applicable Location"
}
}
}
}
}
]
},
"TelevisionStation": {
"title": "Television Station",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A television station.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TelevisionStation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Locksmith": {
"title": "Locksmith",
"anyOf": [
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
}
],
"description": "A locksmith.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Locksmith"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BrainStructure": {
"title": "Brain Structure",
"anyOf": [
{
"$ref": "#/definitions/AnatomicalStructure"
}
],
"description": "Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BrainStructure"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DiagnosticLab": {
"title": "Diagnostic Lab",
"anyOf": [
{
"$ref": "#/definitions/MedicalOrganization"
}
],
"description": "A medical laboratory that offers on-site or off-site diagnostic services.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DiagnosticLab"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"availableTest": {
"items": {
"$ref": "#/definitions/MedicalTest"
},
"additionalItems": false,
"type": "array",
"description": "A diagnostic test or procedure offered by this lab.",
"title": "Available Test"
}
}
}
}
}
]
},
"Event": {
"title": "Event",
"anyOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "An event happening at a certain time at a certain location.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Event",
"http://schema.org/BusinessEvent",
"http://schema.org/ChildrensEvent",
"http://schema.org/ComedyEvent",
"http://schema.org/DanceEvent",
"http://schema.org/EducationEvent",
"http://schema.org/Festival",
"http://schema.org/FoodEvent",
"http://schema.org/LiteraryEvent",
"http://schema.org/MusicEvent",
"http://schema.org/SaleEvent",
"http://schema.org/SocialEvent",
"http://schema.org/SportsEvent",
"http://schema.org/TheaterEvent",
"http://schema.org/UserInteraction",
"http://schema.org/UserBlocks",
"http://schema.org/UserCheckins",
"http://schema.org/UserComments",
"http://schema.org/UserDownloads",
"http://schema.org/UserLikes",
"http://schema.org/UserPageVisits",
"http://schema.org/UserPlays",
"http://schema.org/UserPlusOnes",
"http://schema.org/UserTweets",
"http://schema.org/VisualArtsEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"startDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The start date and time of the event (in ISO 8601 date format).",
"title": "Start Date"
},
"attendee": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A person or organization attending the event.",
"title": "Attendee"
},
"performer": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A performer at the event\u2014for example, a presenter, musician, musical group or actor.",
"title": "Performer"
},
"endDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The end date and time of the event (in ISO 8601 date format).",
"title": "End Date"
},
"performers": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The main performer or performers of the event\u2014for example, a presenter, musician, or actor (legacy spelling; see singular form, performer).",
"title": "Performers"
},
"superEvent": {
"items": {
"$ref": "#/definitions/Event"
},
"additionalItems": false,
"type": "array",
"description": "An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.",
"title": "Super Event"
},
"subEvent": {
"items": {
"$ref": "#/definitions/Event"
},
"additionalItems": false,
"type": "array",
"description": "An Event that is part of this event. For example, a conference event includes many presentations, each are a subEvent of the conference.",
"title": "Sub Event"
},
"offers": {
"items": {
"$ref": "#/definitions/Offer"
},
"additionalItems": false,
"type": "array",
"description": "An offer to sell this item\u2014for example, an offer to sell a product, the DVD of a movie, or tickets to an event.",
"title": "Offers"
},
"subEvents": {
"items": {
"$ref": "#/definitions/Event"
},
"additionalItems": false,
"type": "array",
"description": "Events that are a part of this event. For example, a conference event includes many presentations, each are subEvents of the conference (legacy spelling; see singular form, subEvent).",
"title": "Sub Events"
},
"location": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/PostalAddress"
},
{
"$ref": "#/definitions/Place"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The location of the event or organization.",
"title": "Location"
},
"duration": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.",
"title": "Duration"
},
"attendees": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A person attending the event (legacy spelling; see singular form, attendee).",
"title": "Attendees"
}
}
}
}
}
]
},
"MedicalTherapy": {
"title": "Medical Therapy",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalTherapy",
"http://schema.org/DietarySupplement",
"http://schema.org/Drug",
"http://schema.org/DrugClass",
"http://schema.org/LifestyleModification",
"http://schema.org/Diet",
"http://schema.org/PhysicalActivity",
"http://schema.org/ExercisePlan",
"http://schema.org/PalliativeProcedure",
"http://schema.org/PhysicalTherapy",
"http://schema.org/PsychologicalTreatment",
"http://schema.org/RadiationTherapy",
"http://schema.org/TherapeuticProcedure"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"duplicateTherapy": {
"items": {
"$ref": "#/definitions/MedicalTherapy"
},
"additionalItems": false,
"type": "array",
"description": "A therapy that duplicates or overlaps this one.",
"title": "Duplicate Therapy"
},
"contraindication": {
"items": {
"$ref": "#/definitions/MedicalContraindication"
},
"additionalItems": false,
"type": "array",
"description": "A contraindication for this therapy.",
"title": "Contraindication"
},
"indication": {
"items": {
"$ref": "#/definitions/MedicalIndication"
},
"additionalItems": false,
"type": "array",
"description": "A factor that indicates use of this therapy for treatment and/or prevention of a condition, symptom, etc. For therapies such as drugs, indications can include both officially-approved indications as well as off-label uses. These can be distinguished by using the ApprovedIndication subtype of MedicalIndication.",
"title": "Indication"
},
"seriousAdverseOutcome": {
"items": {
"$ref": "#/definitions/MedicalEntity"
},
"additionalItems": false,
"type": "array",
"description": "A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.",
"title": "Serious Adverse Outcome"
},
"adverseOutcome": {
"items": {
"$ref": "#/definitions/MedicalEntity"
},
"additionalItems": false,
"type": "array",
"description": "A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious (resulting in death, disability, or permanent damage; requiring hospitalization; or is otherwise life-threatening or requires immediate medical attention), tag it as a seriouseAdverseOutcome instead.",
"title": "Adverse Outcome"
}
}
}
}
}
]
},
"Museum": {
"title": "Museum",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A museum.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Museum"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"NGO": {
"title": "NGO",
"anyOf": [
{
"$ref": "#/definitions/Organization"
}
],
"description": "Organization: Non-governmental Organization.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/NGO"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"QuantitativeValue": {
"title": "Quantitative Value",
"anyOf": [
{
"$ref": "#/definitions/StructuredValue"
}
],
"description": "A point value or interval for product characteristics and other purposes.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/QuantitativeValue"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"unitCode": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The unit of measurement given using the UN/CEFACT Common Code (3 characters).",
"title": "Unit Code"
},
"valueReference": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Enumeration"
},
{
"$ref": "#/definitions/StructuredValue"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.",
"title": "Value Reference"
},
"maxValue": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The upper of the product characteristic.",
"title": "Max Value"
},
"value": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The value of the product characteristic.",
"title": "Value"
},
"minValue": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The lower value of the product characteristic.",
"title": "Min Value"
}
}
}
}
}
]
},
"DrugCostCategory": {
"title": "Drug Cost Category",
"enum": [
"http://schema.org/ReimbursementCap",
"http://schema.org/Retail",
"http://schema.org/Wholesale"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Enumerated categories of medical drug costs.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"MedicalRiskCalculator": {
"title": "Medical Risk Calculator",
"anyOf": [
{
"$ref": "#/definitions/MedicalRiskEstimator"
}
],
"description": "A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalRiskCalculator"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AutoWash": {
"title": "Auto Wash",
"anyOf": [
{
"$ref": "#/definitions/AutomotiveBusiness"
}
],
"description": "A car wash business.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AutoWash"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PawnShop": {
"title": "Pawn Shop",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A pawnstore.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PawnShop"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"VisualArtsEvent": {
"title": "Visual Arts Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Visual arts event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/VisualArtsEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"SuperficialAnatomy": {
"title": "Superficial Anatomy",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SuperficialAnatomy"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"associatedPathophysiology": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.",
"title": "Associated Pathophysiology"
},
"relatedTherapy": {
"items": {
"$ref": "#/definitions/MedicalTherapy"
},
"additionalItems": false,
"type": "array",
"description": "A medical therapy related to this anatomy.",
"title": "Related Therapy"
},
"relatedCondition": {
"items": {
"$ref": "#/definitions/MedicalCondition"
},
"additionalItems": false,
"type": "array",
"description": "A medical condition associated with this anatomy.",
"title": "Related Condition"
},
"relatedAnatomy": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/AnatomicalStructure"
},
{
"$ref": "#/definitions/AnatomicalSystem"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Anatomical systems or structures that relate to the superficial anatomy.",
"title": "Related Anatomy"
},
"significance": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment.",
"title": "Significance"
}
}
}
}
}
]
},
"AggregateRating": {
"title": "Aggregate Rating",
"anyOf": [
{
"$ref": "#/definitions/Rating"
}
],
"description": "The average rating based on multiple ratings or reviews.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AggregateRating"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"reviewCount": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The count of total number of reviews.",
"title": "Review Count"
},
"itemReviewed": {
"items": {
"$ref": "#/definitions/Thing"
},
"additionalItems": false,
"type": "array",
"description": "The item that is being reviewed/rated.",
"title": "Item Reviewed"
},
"ratingCount": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The count of total number of ratings.",
"title": "Rating Count"
}
}
}
}
}
]
},
"BookFormatType": {
"title": "Book Format Type",
"enum": [
"http://schema.org/EBook",
"http://schema.org/Hardcover",
"http://schema.org/Paperback"
],
"anyOf": [
{
"$ref": "#/definitions/Enumeration"
}
],
"description": "The publication format of the book.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"MedicalIntangible": {
"title": "Medical Intangible",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalIntangible",
"http://schema.org/DDxElement",
"http://schema.org/DoseSchedule",
"http://schema.org/MaximumDoseSchedule",
"http://schema.org/RecommendedDoseSchedule",
"http://schema.org/ReportedDoseSchedule",
"http://schema.org/DrugCost",
"http://schema.org/DrugLegalStatus",
"http://schema.org/DrugStrength",
"http://schema.org/MedicalCode",
"http://schema.org/MedicalConditionStage",
"http://schema.org/MedicalEnumeration",
"http://schema.org/DrugCostCategory",
"http://schema.org/DrugPregnancyCategory",
"http://schema.org/DrugPrescriptionStatus",
"http://schema.org/InfectiousAgentClass",
"http://schema.org/MedicalAudience",
"http://schema.org/MedicalDevicePurpose",
"http://schema.org/MedicalEvidenceLevel",
"http://schema.org/MedicalImagingTechnique",
"http://schema.org/MedicalObservationalStudyDesign",
"http://schema.org/MedicalProcedureType",
"http://schema.org/MedicalSpecialty",
"http://schema.org/MedicalStudyStatus",
"http://schema.org/MedicalTrialDesign",
"http://schema.org/MedicineSystem",
"http://schema.org/PhysicalActivityCategory",
"http://schema.org/PhysicalExam"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"HomeAndConstructionBusiness": {
"title": "Home And Construction Business",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A construction business.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/HomeAndConstructionBusiness",
"http://schema.org/Electrician",
"http://schema.org/GeneralContractor",
"http://schema.org/HVACBusiness",
"http://schema.org/HousePainter",
"http://schema.org/Locksmith",
"http://schema.org/MovingCompany",
"http://schema.org/Plumber",
"http://schema.org/RoofingContractor"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"FoodEstablishment": {
"title": "Food Establishment",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A food-related business.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/FoodEstablishment",
"http://schema.org/Bakery",
"http://schema.org/BarOrPub",
"http://schema.org/Brewery",
"http://schema.org/CafeOrCoffeeShop",
"http://schema.org/FastFoodRestaurant",
"http://schema.org/IceCreamShop",
"http://schema.org/Restaurant",
"http://schema.org/Winery"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"menu": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/URL"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Either the actual menu or a URL of the menu.",
"title": "Menu"
},
"servesCuisine": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The cuisine of the restaurant.",
"title": "Serves Cuisine"
},
"acceptsReservations": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/URL"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Either Yes/No, or a URL at which reservations can be made.",
"title": "Accepts Reservations"
}
}
}
}
}
]
},
"MedicalGuideline": {
"title": "Medical Guideline",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalGuideline",
"http://schema.org/MedicalGuidelineContraindication",
"http://schema.org/MedicalGuidelineRecommendation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"evidenceLevel": {
"items": {
"$ref": "#/definitions/MedicalEvidenceLevel"
},
"additionalItems": false,
"type": "array",
"description": "Strength of evidence of the data used to formulate the guideline (enumerated).",
"title": "Evidence Level"
},
"evidenceOrigin": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.",
"title": "Evidence Origin"
},
"guidelineSubject": {
"items": {
"$ref": "#/definitions/MedicalEntity"
},
"additionalItems": false,
"type": "array",
"description": "The medical conditions, treatments, etc. that are the subject of the guideline.",
"title": "Guideline Subject"
},
"guidelineDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "Date on which this guideline's recommendation was made.",
"title": "Guideline Date"
}
}
}
}
}
]
},
"GovernmentOrganization": {
"title": "Government Organization",
"anyOf": [
{
"$ref": "#/definitions/Organization"
}
],
"description": "A governmental organization or agency.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/GovernmentOrganization"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DrugStrength": {
"title": "Drug Strength",
"anyOf": [
{
"$ref": "#/definitions/MedicalIntangible"
}
],
"description": "A specific strength in which a medical drug is available in a specific country.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DrugStrength"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"activeIngredient": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "An active ingredient, typically chemical compounds and/or biologic substances.",
"title": "Active Ingredient"
},
"availableIn": {
"items": {
"$ref": "#/definitions/AdministrativeArea"
},
"additionalItems": false,
"type": "array",
"description": "The location in which the strength is available.",
"title": "Available in"
},
"strengthUnit": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The units of an active ingredient's strength, e.g. mg.",
"title": "Strength Unit"
},
"strengthValue": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The value of an active ingredient's strength, e.g. 325.",
"title": "Strength Value"
}
}
}
}
}
]
},
"GeneralContractor": {
"title": "General Contractor",
"anyOf": [
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
}
],
"description": "A general contractor.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/GeneralContractor"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalSign": {
"title": "Medical Sign",
"anyOf": [
{
"$ref": "#/definitions/MedicalSignOrSymptom"
}
],
"description": "Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalSign"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"identifyingExam": {
"items": {
"$ref": "#/definitions/PhysicalExam"
},
"additionalItems": false,
"type": "array",
"description": "A physical examination that can identify this sign.",
"title": "Identifying Exam"
},
"identifyingTest": {
"items": {
"$ref": "#/definitions/MedicalTest"
},
"additionalItems": false,
"type": "array",
"description": "A diagnostic test that can identify this sign.",
"title": "Identifying Test"
}
}
}
}
}
]
},
"ChildCare": {
"title": "Child Care",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A Childcare center.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ChildCare"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"WebApplication": {
"title": "Web Application",
"anyOf": [
{
"$ref": "#/definitions/SoftwareApplication"
}
],
"description": "Web applications.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/WebApplication"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"browserRequirements": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Specifies browser requirements in human-readable text. For example,\"requires HTML5 support\".",
"title": "Browser Requirements"
}
}
}
}
}
]
},
"HVACBusiness": {
"title": "HVAC Business",
"anyOf": [
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
}
],
"description": "An HVAC service.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/HVACBusiness"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Electrician": {
"title": "Electrician",
"anyOf": [
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
}
],
"description": "An electrician.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Electrician"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DrugCost": {
"title": "Drug Cost",
"anyOf": [
{
"$ref": "#/definitions/MedicalIntangible"
}
],
"description": "The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DrugCost"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"applicableLocation": {
"items": {
"$ref": "#/definitions/AdministrativeArea"
},
"additionalItems": false,
"type": "array",
"description": "The location in which the status applies.",
"title": "Applicable Location"
},
"drugUnit": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The unit in which the drug is measured, e.g. '5 mg tablet'.",
"title": "Drug Unit"
},
"costPerUnit": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Number"
},
{
"$ref": "#/definitions/Text"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The cost per unit of the drug.",
"title": "Cost Per Unit"
},
"costCategory": {
"items": {
"$ref": "#/definitions/DrugCostCategory"
},
"additionalItems": false,
"type": "array",
"description": "The category of cost, such as wholesale, retail, reimbursement cap, etc.",
"title": "Cost Category"
},
"costCurrency": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The currency (in 3-letter ISO 4217 format) of the drug cost.",
"title": "Cost Currency"
},
"costOrigin": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Additional details to capture the origin of the cost data. For example, 'Medicare Part B'.",
"title": "Cost Origin"
}
}
}
}
}
]
},
"Embassy": {
"title": "Embassy",
"anyOf": [
{
"$ref": "#/definitions/GovernmentBuilding"
}
],
"description": "An embassy.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Embassy"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"HinduTemple": {
"title": "Hindu Temple",
"anyOf": [
{
"$ref": "#/definitions/PlaceOfWorship"
}
],
"description": "A Hindu temple.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/HinduTemple"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ContactPage": {
"title": "Contact Page",
"anyOf": [
{
"$ref": "#/definitions/WebPage"
}
],
"description": "Web page type: Contact page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ContactPage"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"LiquorStore": {
"title": "Liquor Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A liquor store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/LiquorStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MensClothingStore": {
"title": "Mens Clothing Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A men's clothing store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MensClothingStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalGuidelineRecommendation": {
"title": "Medical Guideline Recommendation",
"anyOf": [
{
"$ref": "#/definitions/MedicalGuideline"
}
],
"description": "A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalGuidelineRecommendation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"recommendationStrength": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Strength of the guideline's recommendation (e.g. 'class I').",
"title": "Recommendation Strength"
}
}
}
}
}
]
},
"Review": {
"title": "Review",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A review of an item - for example, a restaurant, movie, or store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Review"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"reviewBody": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The actual body of the review",
"title": "Review Body"
},
"itemReviewed": {
"items": {
"$ref": "#/definitions/Thing"
},
"additionalItems": false,
"type": "array",
"description": "The item that is being reviewed/rated.",
"title": "Item Reviewed"
},
"reviewRating": {
"items": {
"$ref": "#/definitions/Rating"
},
"additionalItems": false,
"type": "array",
"description": "The rating given in this review. Note that reviews can themselves be rated. The reviewRating applies to rating given by the review. The aggregateRating property applies to the review itself, as a creative work.",
"title": "Review Rating"
}
}
}
}
}
]
},
"MedicalCondition": {
"title": "Medical Condition",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalCondition",
"http://schema.org/InfectiousDisease"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"possibleComplication": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.",
"title": "Possible Complication"
},
"secondaryPrevention": {
"items": {
"$ref": "#/definitions/MedicalTherapy"
},
"additionalItems": false,
"type": "array",
"description": "A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.",
"title": "Secondary Prevention"
},
"naturalProgression": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The expected progression of the condition if it is not treated and allowed to progress naturally.",
"title": "Natural Progression"
},
"epidemiology": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The characteristics of associated patients, such as age, gender, race etc.",
"title": "Epidemiology"
},
"signOrSymptom": {
"items": {
"$ref": "#/definitions/MedicalSignOrSymptom"
},
"additionalItems": false,
"type": "array",
"description": "A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experienceof the medical condition.",
"title": "Sign or Symptom"
},
"differentialDiagnosis": {
"items": {
"$ref": "#/definitions/DDxElement"
},
"additionalItems": false,
"type": "array",
"description": "One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient.",
"title": "Differential Diagnosis"
},
"pathophysiology": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.",
"title": "Pathophysiology"
},
"subtype": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A more specific type of the condition, where applicable, for example 'Type 1 Diabetes', 'Type 2 Diabetes', or 'Gestational Diabetes' for Diabetes.",
"title": "Subtype"
},
"possibleTreatment": {
"items": {
"$ref": "#/definitions/MedicalTherapy"
},
"additionalItems": false,
"type": "array",
"description": "A possible treatment to address this condition, sign or symptom.",
"title": "Possible Treatment"
},
"primaryPrevention": {
"items": {
"$ref": "#/definitions/MedicalTherapy"
},
"additionalItems": false,
"type": "array",
"description": "A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination.",
"title": "Primary Prevention"
},
"associatedAnatomy": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/AnatomicalSystem"
},
{
"$ref": "#/definitions/SuperficialAnatomy"
},
{
"$ref": "#/definitions/AnatomicalStructure"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The anatomy of the underlying organ system or structures associated with this entity.",
"title": "Associated Anatomy"
},
"expectedPrognosis": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The likely outcome in either the short term or long term of the medical condition.",
"title": "Expected Prognosis"
},
"stage": {
"items": {
"$ref": "#/definitions/MedicalConditionStage"
},
"additionalItems": false,
"type": "array",
"description": "The stage of the condition, if applicable.",
"title": "Stage"
},
"cause": {
"items": {
"$ref": "#/definitions/MedicalCause"
},
"additionalItems": false,
"type": "array",
"description": "An underlying cause. More specifically, one of the causative agent(s) that are most directly responsible for the pathophysiologic process that eventually results in the occurrence.",
"title": "Cause"
},
"riskFactor": {
"items": {
"$ref": "#/definitions/MedicalRiskFactor"
},
"additionalItems": false,
"type": "array",
"description": "A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age, coexisting condition.",
"title": "Risk Factor"
},
"typicalTest": {
"items": {
"$ref": "#/definitions/MedicalTest"
},
"additionalItems": false,
"type": "array",
"description": "A medical test typically performed given this condition.",
"title": "Typical Test"
}
}
}
}
}
]
},
"LocalBusiness": {
"title": "Local Business",
"anyOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Place"
}
],
"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.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/LocalBusiness",
"http://schema.org/AnimalShelter",
"http://schema.org/AutomotiveBusiness",
"http://schema.org/AutoBodyShop",
"http://schema.org/AutoDealer",
"http://schema.org/AutoPartsStore",
"http://schema.org/AutoRental",
"http://schema.org/AutoRepair",
"http://schema.org/AutoWash",
"http://schema.org/GasStation",
"http://schema.org/MotorcycleDealer",
"http://schema.org/MotorcycleRepair",
"http://schema.org/ChildCare",
"http://schema.org/DryCleaningOrLaundry",
"http://schema.org/EmergencyService",
"http://schema.org/FireStation",
"http://schema.org/Hospital",
"http://schema.org/PoliceStation",
"http://schema.org/EmploymentAgency",
"http://schema.org/EntertainmentBusiness",
"http://schema.org/AdultEntertainment",
"http://schema.org/AmusementPark",
"http://schema.org/ArtGallery",
"http://schema.org/Casino",
"http://schema.org/ComedyClub",
"http://schema.org/MovieTheater",
"http://schema.org/NightClub",
"http://schema.org/FinancialService",
"http://schema.org/AccountingService",
"http://schema.org/AutomatedTeller",
"http://schema.org/BankOrCreditUnion",
"http://schema.org/InsuranceAgency",
"http://schema.org/FoodEstablishment",
"http://schema.org/Bakery",
"http://schema.org/BarOrPub",
"http://schema.org/Brewery",
"http://schema.org/CafeOrCoffeeShop",
"http://schema.org/FastFoodRestaurant",
"http://schema.org/IceCreamShop",
"http://schema.org/Restaurant",
"http://schema.org/Winery",
"http://schema.org/GovernmentOffice",
"http://schema.org/PostOffice",
"http://schema.org/HealthAndBeautyBusiness",
"http://schema.org/BeautySalon",
"http://schema.org/DaySpa",
"http://schema.org/HairSalon",
"http://schema.org/HealthClub",
"http://schema.org/NailSalon",
"http://schema.org/TattooParlor",
"http://schema.org/HomeAndConstructionBusiness",
"http://schema.org/Electrician",
"http://schema.org/GeneralContractor",
"http://schema.org/HVACBusiness",
"http://schema.org/HousePainter",
"http://schema.org/Locksmith",
"http://schema.org/MovingCompany",
"http://schema.org/Plumber",
"http://schema.org/RoofingContractor",
"http://schema.org/InternetCafe",
"http://schema.org/Library",
"http://schema.org/LodgingBusiness",
"http://schema.org/BedAndBreakfast",
"http://schema.org/Hostel",
"http://schema.org/Hotel",
"http://schema.org/Motel",
"http://schema.org/MedicalOrganization",
"http://schema.org/Dentist",
"http://schema.org/DiagnosticLab",
"http://schema.org/MedicalClinic",
"http://schema.org/Optician",
"http://schema.org/Pharmacy",
"http://schema.org/Physician",
"http://schema.org/VeterinaryCare",
"http://schema.org/ProfessionalService",
"http://schema.org/Attorney",
"http://schema.org/Notary",
"http://schema.org/RadioStation",
"http://schema.org/RealEstateAgent",
"http://schema.org/RecyclingCenter",
"http://schema.org/SelfStorage",
"http://schema.org/ShoppingCenter",
"http://schema.org/SportsActivityLocation",
"http://schema.org/BowlingAlley",
"http://schema.org/ExerciseGym",
"http://schema.org/GolfCourse",
"http://schema.org/PublicSwimmingPool",
"http://schema.org/SkiResort",
"http://schema.org/SportsClub",
"http://schema.org/StadiumOrArena",
"http://schema.org/TennisComplex",
"http://schema.org/Store",
"http://schema.org/BikeStore",
"http://schema.org/BookStore",
"http://schema.org/ClothingStore",
"http://schema.org/ComputerStore",
"http://schema.org/ConvenienceStore",
"http://schema.org/DepartmentStore",
"http://schema.org/ElectronicsStore",
"http://schema.org/Florist",
"http://schema.org/FurnitureStore",
"http://schema.org/GardenStore",
"http://schema.org/GroceryStore",
"http://schema.org/HardwareStore",
"http://schema.org/HobbyShop",
"http://schema.org/HomeGoodsStore",
"http://schema.org/JewelryStore",
"http://schema.org/LiquorStore",
"http://schema.org/MensClothingStore",
"http://schema.org/MobilePhoneStore",
"http://schema.org/MovieRentalStore",
"http://schema.org/MusicStore",
"http://schema.org/OfficeEquipmentStore",
"http://schema.org/OutletStore",
"http://schema.org/PawnShop",
"http://schema.org/PetStore",
"http://schema.org/ShoeStore",
"http://schema.org/SportingGoodsStore",
"http://schema.org/TireShop",
"http://schema.org/ToyStore",
"http://schema.org/WholesaleStore",
"http://schema.org/TelevisionStation",
"http://schema.org/TouristInformationCenter",
"http://schema.org/TravelAgency"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"currenciesAccepted": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The currency accepted (in ISO 4217 currency format).",
"title": "Currencies Accepted"
},
"openingHours": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "The 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 '-'.- Days are specified using the following two-letter combinations: Mo, Tu, We, Th, Fr, Sa, Su.- Times are specified using 24:00 time. For example, 3pm is specified as 15:00. - Here is an example: <time itemprop=\"openingHours\" datetime=\"Tu,Th 16:00-20:00\">Tuesdays and Thursdays 4-8pm</time>. - If a business is open 7 days a week, then it can be specified as <time itemprop=\"openingHours\" datetime=\"Mo-Su\">Monday through Sunday, all day</time>.",
"title": "Opening Hours"
},
"paymentAccepted": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Cash, credit card, etc.",
"title": "Payment Accepted"
},
"branchOf": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "The larger organization that this local business is a branch of, if any.",
"title": "Branch of"
},
"priceRange": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The price range of the business, for example $$$.",
"title": "Price Range"
}
}
}
}
}
]
},
"AnatomicalStructure": {
"title": "Anatomical Structure",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AnatomicalStructure",
"http://schema.org/Bone",
"http://schema.org/BrainStructure",
"http://schema.org/Joint",
"http://schema.org/Ligament",
"http://schema.org/Muscle",
"http://schema.org/Nerve",
"http://schema.org/Vessel",
"http://schema.org/Artery",
"http://schema.org/LymphaticVessel",
"http://schema.org/Vein"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"function": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Function of the anatomical structure.",
"title": "Function"
},
"associatedPathophysiology": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.",
"title": "Associated Pathophysiology"
},
"bodyLocation": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Location in the body of the anatomical structure.",
"title": "Body Location"
},
"relatedTherapy": {
"items": {
"$ref": "#/definitions/MedicalTherapy"
},
"additionalItems": false,
"type": "array",
"description": "A medical therapy related to this anatomy.",
"title": "Related Therapy"
},
"connectedTo": {
"items": {
"$ref": "#/definitions/AnatomicalStructure"
},
"additionalItems": false,
"type": "array",
"description": "Other anatomical structures to which this structure is connected.",
"title": "Connected to"
},
"partOfSystem": {
"items": {
"$ref": "#/definitions/AnatomicalSystem"
},
"additionalItems": false,
"type": "array",
"description": "The anatomical or organ system that this structure is part of.",
"title": "Part of System"
},
"diagram": {
"items": {
"$ref": "#/definitions/ImageObject"
},
"additionalItems": false,
"type": "array",
"description": "An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures.",
"title": "Diagram"
},
"relatedCondition": {
"items": {
"$ref": "#/definitions/MedicalCondition"
},
"additionalItems": false,
"type": "array",
"description": "A medical condition associated with this anatomy.",
"title": "Related Condition"
},
"subStructure": {
"items": {
"$ref": "#/definitions/AnatomicalStructure"
},
"additionalItems": false,
"type": "array",
"description": "Component (sub-)structure(s) that comprise this anatomical structure.",
"title": "Sub Structure"
}
}
}
}
}
]
},
"PerformingGroup": {
"title": "Performing Group",
"anyOf": [
{
"$ref": "#/definitions/Organization"
}
],
"description": "A performance group, such as a band, an orchestra, or a circus.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PerformingGroup",
"http://schema.org/DanceGroup",
"http://schema.org/MusicGroup",
"http://schema.org/TheaterGroup"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalTest": {
"title": "Medical Test",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "Any medical test, typically performed for diagnostic purposes.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalTest",
"http://schema.org/BloodTest",
"http://schema.org/DiagnosticProcedure",
"http://schema.org/ImagingTest",
"http://schema.org/MedicalTestPanel",
"http://schema.org/PathologyTest"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"affectedBy": {
"items": {
"$ref": "#/definitions/Drug"
},
"additionalItems": false,
"type": "array",
"description": "Drugs that affect the test's results.",
"title": "Affected by"
},
"usedToDiagnose": {
"items": {
"$ref": "#/definitions/MedicalCondition"
},
"additionalItems": false,
"type": "array",
"description": "A condition the test is used to diagnose.",
"title": "Used to Diagnose"
},
"normalRange": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Range of acceptable values for a typical patient, when applicable.",
"title": "Normal Range"
},
"usesDevice": {
"items": {
"$ref": "#/definitions/MedicalDevice"
},
"additionalItems": false,
"type": "array",
"description": "Device used to perform the test.",
"title": "Uses Device"
},
"signDetected": {
"items": {
"$ref": "#/definitions/MedicalSign"
},
"additionalItems": false,
"type": "array",
"description": "A sign detected by the test.",
"title": "Sign Detected"
}
}
}
}
}
]
},
"HealthClub": {
"title": "Health Club",
"anyOf": [
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
},
{
"$ref": "#/definitions/SportsActivityLocation"
}
],
"description": "A health club.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/HealthClub"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"UserCheckins": {
"title": "User Checkins",
"anyOf": [
{
"$ref": "#/definitions/UserInteraction"
}
],
"description": "User interaction: Check-in at a place.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/UserCheckins"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"GroceryStore": {
"title": "Grocery Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A grocery store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/GroceryStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ApprovedIndication": {
"title": "Approved Indication",
"anyOf": [
{
"$ref": "#/definitions/MedicalIndication"
}
],
"description": "An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ApprovedIndication"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Date": {
"pattern": "(\\d{4}-\\d{2}-\\{2}|\\d{8})",
"type": "string",
"description": "A date value in ISO 8601 date format.",
"title": "Date"
},
"Preschool": {
"title": "Preschool",
"anyOf": [
{
"$ref": "#/definitions/EducationalOrganization"
}
],
"description": "A preschool.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Preschool"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Language": {
"title": "Language",
"anyOf": [
{
"$ref": "#/definitions/Intangible"
}
],
"description": "Natural languages such as Spanish, Tamil, Hindi, English, etc. and programming languages such as Scheme and Lisp.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Language"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DryCleaningOrLaundry": {
"title": "Dry Cleaning or Laundry",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A dry-cleaning business.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DryCleaningOrLaundry"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"GardenStore": {
"title": "Garden Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A garden store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/GardenStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DiagnosticProcedure": {
"title": "Diagnostic Procedure",
"anyOf": [
{
"$ref": "#/definitions/MedicalProcedure"
},
{
"$ref": "#/definitions/MedicalTest"
}
],
"description": "A medical procedure intended primarly for diagnostic, as opposed to therapeutic, purposes.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DiagnosticProcedure"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Code": {
"title": "Code",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Code"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"codeRepository": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex)",
"title": "Code Repository"
},
"programmingLanguage": {
"items": {
"$ref": "#/definitions/Thing"
},
"additionalItems": false,
"type": "array",
"description": "The computer programming language.",
"title": "Programming Language"
},
"runtime": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0)",
"title": "Runtime"
},
"sampleType": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Full (compile ready) solution, code snippet, inline code, scripts, template.",
"title": "Sample Type"
},
"targetProduct": {
"items": {
"$ref": "#/definitions/SoftwareApplication"
},
"additionalItems": false,
"type": "array",
"description": "Target Operating System / Product to which the code applies. If applies to several versions, just the product name can be used.",
"title": "Target Product"
}
}
}
}
}
]
},
"HealthAndBeautyBusiness": {
"title": "Health And Beauty Business",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "Health and beauty.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/HealthAndBeautyBusiness",
"http://schema.org/BeautySalon",
"http://schema.org/DaySpa",
"http://schema.org/HairSalon",
"http://schema.org/HealthClub",
"http://schema.org/NailSalon",
"http://schema.org/TattooParlor"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"CatholicChurch": {
"title": "Catholic Church",
"anyOf": [
{
"$ref": "#/definitions/PlaceOfWorship"
}
],
"description": "A Catholic church.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/CatholicChurch"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BusStation": {
"title": "Bus Station",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A bus station.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BusStation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"TreatmentIndication": {
"title": "Treatment Indication",
"anyOf": [
{
"$ref": "#/definitions/MedicalIndication"
}
],
"description": "An indication for treating an underlying condition, symptom, etc.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TreatmentIndication"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PlaceOfWorship": {
"title": "Place of Worship",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "Place of worship, such as a church, synagogue, or mosque.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PlaceOfWorship",
"http://schema.org/BuddhistTemple",
"http://schema.org/CatholicChurch",
"http://schema.org/Church",
"http://schema.org/HinduTemple",
"http://schema.org/Mosque",
"http://schema.org/Synagogue"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"WarrantyScope": {
"title": "Warranty Scope",
"anyOf": [
{
"$ref": "#/definitions/Enumeration"
}
],
"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\nhttp://purl.org/goodrelations/v1#Labor-BringIn\nhttp://purl.org/goodrelations/v1#PartsAndLabor-BringIn\nhttp://purl.org/goodrelations/v1#PartsAndLabor-PickUp",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/WarrantyScope"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Vessel": {
"title": "Vessel",
"anyOf": [
{
"$ref": "#/definitions/AnatomicalStructure"
}
],
"description": "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Vessel",
"http://schema.org/Artery",
"http://schema.org/LymphaticVessel",
"http://schema.org/Vein"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ContactPoint": {
"title": "Contact Point",
"anyOf": [
{
"$ref": "#/definitions/StructuredValue"
}
],
"description": "A contact point\u2014for example, a Customer Complaints department.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ContactPoint",
"http://schema.org/PostalAddress"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"email": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Email address.",
"title": "Email"
},
"contactType": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.",
"title": "Contact Type"
},
"telephone": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The telephone number.",
"title": "Telephone"
},
"faxNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The fax number.",
"title": "Fax Number"
}
}
}
}
}
]
},
"DaySpa": {
"title": "Day Spa",
"anyOf": [
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
}
],
"description": "A day spa.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DaySpa"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Movie": {
"title": "Movie",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A movie.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Movie"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"producer": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "The producer of the movie, TV series, season, or episode, or video.",
"title": "Producer"
},
"productionCompany": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "The production company or studio that made the movie, TV series, season, or episode, or video.",
"title": "Production Company"
},
"musicBy": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Person"
},
{
"$ref": "#/definitions/MusicGroup"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The composer of the movie or TV soundtrack.",
"title": "Music by"
},
"actor": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A cast member of the movie, TV series, season, or episode, or video.",
"title": "Actor"
},
"director": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "The director of the movie, TV episode, or series.",
"title": "Director"
},
"actors": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A cast member of the movie, TV series, season, or episode, or video. (legacy spelling; see singular form, actor)",
"title": "Actors"
},
"duration": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.",
"title": "Duration"
},
"trailer": {
"items": {
"$ref": "#/definitions/VideoObject"
},
"additionalItems": false,
"type": "array",
"description": "The trailer of the movie or TV series, season, or episode.",
"title": "Trailer"
}
}
}
}
}
]
},
"TravelAgency": {
"title": "Travel Agency",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A travel agency.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TravelAgency"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalDevice": {
"title": "Medical Device",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "Any object used in a medical capacity, such as to diagnose or treat a patient.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalDevice"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"contraindication": {
"items": {
"$ref": "#/definitions/MedicalContraindication"
},
"additionalItems": false,
"type": "array",
"description": "A contraindication for this therapy.",
"title": "Contraindication"
},
"preOp": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A description of the workup, testing, and other preparations required before implanting this device.",
"title": "Pre Op"
},
"postOp": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A description of the postoperative procedures, care, and/or followups for this device.",
"title": "Post Op"
},
"adverseOutcome": {
"items": {
"$ref": "#/definitions/MedicalEntity"
},
"additionalItems": false,
"type": "array",
"description": "A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious (resulting in death, disability, or permanent damage; requiring hospitalization; or is otherwise life-threatening or requires immediate medical attention), tag it as a seriouseAdverseOutcome instead.",
"title": "Adverse Outcome"
},
"seriousAdverseOutcome": {
"items": {
"$ref": "#/definitions/MedicalEntity"
},
"additionalItems": false,
"type": "array",
"description": "A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.",
"title": "Serious Adverse Outcome"
},
"indication": {
"items": {
"$ref": "#/definitions/MedicalIndication"
},
"additionalItems": false,
"type": "array",
"description": "A factor that indicates use of this therapy for treatment and/or prevention of a condition, symptom, etc. For therapies such as drugs, indications can include both officially-approved indications as well as off-label uses. These can be distinguished by using the ApprovedIndication subtype of MedicalIndication.",
"title": "Indication"
},
"purpose": {
"items": {
"$ref": "#/definitions/MedicalDevicePurpose"
},
"additionalItems": false,
"type": "array",
"description": "The purpose or purposes of this device, for example whether it is intended for diagnostic or therapeutic use.",
"title": "Purpose"
},
"procedure": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A description of the procedure involved in setting up, using, and/or installing the device.",
"title": "Procedure"
}
}
}
}
}
]
},
"AdministrativeArea": {
"title": "Administrative Area",
"anyOf": [
{
"$ref": "#/definitions/Place"
}
],
"description": "A geographical region under the jurisdiction of a particular government.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AdministrativeArea",
"http://schema.org/City",
"http://schema.org/Country",
"http://schema.org/State"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"EmergencyService": {
"title": "Emergency Service",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "An emergency service, such as a fire station or ER.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/EmergencyService",
"http://schema.org/FireStation",
"http://schema.org/Hospital",
"http://schema.org/PoliceStation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"JewelryStore": {
"title": "Jewelry Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A jewelry store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/JewelryStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"CheckoutPage": {
"title": "Checkout Page",
"anyOf": [
{
"$ref": "#/definitions/WebPage"
}
],
"description": "Web page type: Checkout page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/CheckoutPage"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DrugClass": {
"title": "Drug Class",
"anyOf": [
{
"$ref": "#/definitions/MedicalTherapy"
}
],
"description": "A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DrugClass"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"drug": {
"items": {
"$ref": "#/definitions/Drug"
},
"additionalItems": false,
"type": "array",
"description": "A drug in this drug class.",
"title": "Drug"
}
}
}
}
}
]
},
"IndividualProduct": {
"title": "Individual Product",
"anyOf": [
{
"$ref": "#/definitions/Product"
}
],
"description": "A single, identifiable product instance (e.g. a laptop with a particular serial number).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/IndividualProduct"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"serialNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
"title": "Serial Number"
}
}
}
}
}
]
},
"LifestyleModification": {
"title": "Lifestyle Modification",
"anyOf": [
{
"$ref": "#/definitions/MedicalTherapy"
}
],
"description": "A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/LifestyleModification",
"http://schema.org/Diet",
"http://schema.org/PhysicalActivity",
"http://schema.org/ExercisePlan"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ItemPage": {
"title": "Item Page",
"anyOf": [
{
"$ref": "#/definitions/WebPage"
}
],
"description": "A page devoted to a single item, such as a particular product or hotel.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ItemPage"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Optician": {
"title": "Optician",
"anyOf": [
{
"$ref": "#/definitions/MedicalOrganization"
}
],
"description": "An optician's store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Optician"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"WPSideBar": {
"title": "WP Side Bar",
"anyOf": [
{
"$ref": "#/definitions/WebPageElement"
}
],
"description": "A sidebar section of the page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/WPSideBar"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"SportsTeam": {
"title": "Sports Team",
"anyOf": [
{
"$ref": "#/definitions/Organization"
}
],
"description": "Organization: Sports team.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SportsTeam"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"RoofingContractor": {
"title": "Roofing Contractor",
"anyOf": [
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
}
],
"description": "A roofing contractor.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/RoofingContractor"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Duration": {
"oneOf": [
{
"pattern": "^(-)?P(?:(\\d+)Y)?(?:(\\d+)M)?(?:(\\d+)D)?(T(?:(\\d+)H)?(?:(\\d+)M)?(?:(\\d+(?:\\.\\d+)?)S)?)?$",
"type": "string"
}
],
"description": "Quantity: Duration (use ISO 8601 duration format).",
"title": "Duration"
},
"TypeAndQuantityNode": {
"title": "Type And Quantity Node",
"anyOf": [
{
"$ref": "#/definitions/StructuredValue"
}
],
"description": "A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TypeAndQuantityNode"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"unitCode": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The unit of measurement given using the UN/CEFACT Common Code (3 characters).",
"title": "Unit Code"
},
"businessFunction": {
"items": {
"$ref": "#/definitions/BusinessFunction"
},
"additionalItems": false,
"type": "array",
"description": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.",
"title": "Business Function"
},
"amountOfThisGood": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The quantity of the goods included in the offer.",
"title": "Amount of This Good"
},
"typeOfGood": {
"items": {
"$ref": "#/definitions/Product"
},
"additionalItems": false,
"type": "array",
"description": "The product that this structured value is referring to.",
"title": "Type of Good"
}
}
}
}
}
]
},
"SomeProducts": {
"title": "Some Products",
"anyOf": [
{
"$ref": "#/definitions/Product"
}
],
"description": "A placeholder for multiple similar products of the same kind.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SomeProducts"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"inventoryLevel": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The current approximate inventory level for the item or items.",
"title": "Inventory Level"
}
}
}
}
}
]
},
"ReportedDoseSchedule": {
"title": "Reported Dose Schedule",
"anyOf": [
{
"$ref": "#/definitions/DoseSchedule"
}
],
"description": "A patient-reported or observed dosing schedule for a drug or supplement.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ReportedDoseSchedule"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Bone": {
"title": "Bone",
"anyOf": [
{
"$ref": "#/definitions/AnatomicalStructure"
}
],
"description": "Rigid connective tissue that comprises up the skeletal structure of the human body.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Bone"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DanceGroup": {
"title": "Dance Group",
"anyOf": [
{
"$ref": "#/definitions/PerformingGroup"
}
],
"description": "A dance group\u2014for example, the Alvin Ailey Dance Theater or Riverdance.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DanceGroup"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Attorney": {
"title": "Attorney",
"anyOf": [
{
"$ref": "#/definitions/ProfessionalService"
}
],
"description": "Professional service: Attorney.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Attorney"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PublicSwimmingPool": {
"title": "Public Swimming Pool",
"anyOf": [
{
"$ref": "#/definitions/SportsActivityLocation"
}
],
"description": "A public swimming pool.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PublicSwimmingPool"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Float": {
"not": {
"type": "integer"
},
"type": "number",
"description": "Data type: Floating number.",
"title": "Float"
},
"PriceSpecification": {
"title": "Price Specification",
"anyOf": [
{
"$ref": "#/definitions/StructuredValue"
}
],
"description": "A structured value representing a monetary amount. Typically, only the subclasses of this type are used for markup.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PriceSpecification",
"http://schema.org/DeliveryChargeSpecification",
"http://schema.org/PaymentChargeSpecification",
"http://schema.org/UnitPriceSpecification"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"minPrice": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The lowest price if the price is a range.",
"title": "Min Price"
},
"priceCurrency": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The currency (in 3-letter ISO 4217 format) of the offer price or a price component, when attached to PriceSpecification and its subtypes.",
"title": "Price Currency"
},
"price": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/Number"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.",
"title": "Price"
},
"maxPrice": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The highest price if the price is a range.",
"title": "Max Price"
},
"eligibleTransactionVolume": {
"items": {
"$ref": "#/definitions/PriceSpecification"
},
"additionalItems": false,
"type": "array",
"description": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.",
"title": "Eligible Transaction Volume"
},
"valueAddedTaxIncluded": {
"items": {
"$ref": "#/definitions/Boolean"
},
"additionalItems": false,
"type": "array",
"description": "Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.",
"title": "Value Added Tax Included"
},
"eligibleQuantity": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.",
"title": "Eligible Quantity"
},
"validThrough": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The end of the validity of offer, price specification, or opening hours data.",
"title": "Valid Through"
},
"validFrom": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The beginning of the validity of offer, price specification, or opening hours data.",
"title": "Valid From"
}
}
}
}
}
]
},
"MedicalEntity": {
"title": "Medical Entity",
"anyOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "The most generic type of entity related to health and the practice of medicine.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalEntity",
"http://schema.org/AnatomicalStructure",
"http://schema.org/Bone",
"http://schema.org/BrainStructure",
"http://schema.org/Joint",
"http://schema.org/Ligament",
"http://schema.org/Muscle",
"http://schema.org/Nerve",
"http://schema.org/Vessel",
"http://schema.org/Artery",
"http://schema.org/LymphaticVessel",
"http://schema.org/Vein",
"http://schema.org/AnatomicalSystem",
"http://schema.org/MedicalCause",
"http://schema.org/MedicalCondition",
"http://schema.org/InfectiousDisease",
"http://schema.org/MedicalContraindication",
"http://schema.org/MedicalDevice",
"http://schema.org/MedicalGuideline",
"http://schema.org/MedicalGuidelineContraindication",
"http://schema.org/MedicalGuidelineRecommendation",
"http://schema.org/MedicalIndication",
"http://schema.org/ApprovedIndication",
"http://schema.org/PreventionIndication",
"http://schema.org/TreatmentIndication",
"http://schema.org/MedicalIntangible",
"http://schema.org/DDxElement",
"http://schema.org/DoseSchedule",
"http://schema.org/MaximumDoseSchedule",
"http://schema.org/RecommendedDoseSchedule",
"http://schema.org/ReportedDoseSchedule",
"http://schema.org/DrugCost",
"http://schema.org/DrugLegalStatus",
"http://schema.org/DrugStrength",
"http://schema.org/MedicalCode",
"http://schema.org/MedicalConditionStage",
"http://schema.org/MedicalEnumeration",
"http://schema.org/DrugCostCategory",
"http://schema.org/DrugPregnancyCategory",
"http://schema.org/DrugPrescriptionStatus",
"http://schema.org/InfectiousAgentClass",
"http://schema.org/MedicalAudience",
"http://schema.org/MedicalDevicePurpose",
"http://schema.org/MedicalEvidenceLevel",
"http://schema.org/MedicalImagingTechnique",
"http://schema.org/MedicalObservationalStudyDesign",
"http://schema.org/MedicalProcedureType",
"http://schema.org/MedicalSpecialty",
"http://schema.org/MedicalStudyStatus",
"http://schema.org/MedicalTrialDesign",
"http://schema.org/MedicineSystem",
"http://schema.org/PhysicalActivityCategory",
"http://schema.org/PhysicalExam",
"http://schema.org/MedicalProcedure",
"http://schema.org/DiagnosticProcedure",
"http://schema.org/PalliativeProcedure",
"http://schema.org/TherapeuticProcedure",
"http://schema.org/MedicalRiskEstimator",
"http://schema.org/MedicalRiskCalculator",
"http://schema.org/MedicalRiskScore",
"http://schema.org/MedicalRiskFactor",
"http://schema.org/MedicalSignOrSymptom",
"http://schema.org/MedicalSign",
"http://schema.org/MedicalSymptom",
"http://schema.org/MedicalStudy",
"http://schema.org/MedicalObservationalStudy",
"http://schema.org/MedicalTrial",
"http://schema.org/MedicalTest",
"http://schema.org/BloodTest",
"http://schema.org/ImagingTest",
"http://schema.org/MedicalTestPanel",
"http://schema.org/PathologyTest",
"http://schema.org/MedicalTherapy",
"http://schema.org/DietarySupplement",
"http://schema.org/Drug",
"http://schema.org/DrugClass",
"http://schema.org/LifestyleModification",
"http://schema.org/Diet",
"http://schema.org/PhysicalActivity",
"http://schema.org/ExercisePlan",
"http://schema.org/PhysicalTherapy",
"http://schema.org/PsychologicalTreatment",
"http://schema.org/RadiationTherapy",
"http://schema.org/SuperficialAnatomy"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"code": {
"items": {
"$ref": "#/definitions/MedicalCode"
},
"additionalItems": false,
"type": "array",
"description": "A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.",
"title": "Code"
},
"relevantSpecialty": {
"items": {
"$ref": "#/definitions/MedicalSpecialty"
},
"additionalItems": false,
"type": "array",
"description": "If applicable, a medical specialty in which this entity is relevant.",
"title": "Relevant Specialty"
},
"study": {
"items": {
"$ref": "#/definitions/MedicalStudy"
},
"additionalItems": false,
"type": "array",
"description": "A medical study or trial related to this entity.",
"title": "Study"
},
"guideline": {
"items": {
"$ref": "#/definitions/MedicalGuideline"
},
"additionalItems": false,
"type": "array",
"description": "A medical guideline related to this entity.",
"title": "Guideline"
},
"recognizingAuthority": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.",
"title": "Recognizing Authority"
},
"medicineSystem": {
"items": {
"$ref": "#/definitions/MedicineSystem"
},
"additionalItems": false,
"type": "array",
"description": "The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc.",
"title": "Medicine System"
},
"alternateName": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Any alternate name for this medical entity.",
"title": "Alternate Name"
}
}
}
}
}
]
},
"TVSeason": {
"title": "TV Season",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A TV season.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TVSeason"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"startDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The start date and time of the event (in ISO 8601 date format).",
"title": "Start Date"
},
"episode": {
"items": {
"$ref": "#/definitions/TVEpisode"
},
"additionalItems": false,
"type": "array",
"description": "An episode of a TV series or season.",
"title": "Episode"
},
"partOfTVSeries": {
"items": {
"$ref": "#/definitions/TVSeries"
},
"additionalItems": false,
"type": "array",
"description": "The TV series to which this episode or season belongs.",
"title": "Part of TV Series"
},
"episodes": {
"items": {
"$ref": "#/definitions/TVEpisode"
},
"additionalItems": false,
"type": "array",
"description": "The episode of a TV series or season (legacy spelling; see singular form, episode).",
"title": "Episodes"
},
"numberOfEpisodes": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The number of episodes in this season or series.",
"title": "Number of Episodes"
},
"endDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The end date and time of the event (in ISO 8601 date format).",
"title": "End Date"
},
"seasonNumber": {
"items": {
"$ref": "#/definitions/Integer"
},
"additionalItems": false,
"type": "array",
"description": "The season number.",
"title": "Season Number"
},
"trailer": {
"items": {
"$ref": "#/definitions/VideoObject"
},
"additionalItems": false,
"type": "array",
"description": "The trailer of the movie or TV series, season, or episode.",
"title": "Trailer"
}
}
}
}
}
]
},
"Boolean": {
"enum": [
"True",
"False",
"http://schema.org/True",
"http://schema.org/False",
true,
false
],
"description": "Boolean: True or False.",
"title": "Boolean"
},
"GatedResidenceCommunity": {
"title": "Gated Residence Community",
"anyOf": [
{
"$ref": "#/definitions/Residence"
}
],
"description": "Residence type: Gated community.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/GatedResidenceCommunity"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MovieTheater": {
"title": "Movie Theater",
"anyOf": [
{
"$ref": "#/definitions/EntertainmentBusiness"
},
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A movie theater.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MovieTheater"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"LiteraryEvent": {
"title": "Literary Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Literary event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/LiteraryEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MusicVenue": {
"title": "Music Venue",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A music venue.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MusicVenue"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AlignmentObject": {
"title": "Alignment Object",
"anyOf": [
{
"$ref": "#/definitions/Intangible"
}
],
"description": "An intangible item that describes an alignment between a learning resource and a node in an educational framework.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AlignmentObject"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"alignmentType": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A category of alignment between the learning resource and the framework node. Recommended values include: 'assesses', 'teaches', 'requires', 'textComplexity', 'readingLevel', 'educationalSubject', and 'educationLevel'.",
"title": "Alignment Type"
},
"educationalFramework": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The framework to which the resource being described is aligned.",
"title": "Educational Framework"
},
"targetName": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The name of a node in an established educational framework.",
"title": "Target Name"
},
"targetDescription": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The description of a node in an established educational framework.",
"title": "Target Description"
},
"targetUrl": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "The URL of a node in an established educational framework.",
"title": "Target Url"
}
}
}
}
}
]
},
"GeoShape": {
"title": "Geo Shape",
"anyOf": [
{
"$ref": "#/definitions/StructuredValue"
}
],
"description": "The geographic shape of a place.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/GeoShape"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"box": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"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 spacedelimited points where the first and final points are identical.",
"title": "Box"
},
"circle": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"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.",
"title": "Circle"
},
"elevation": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/Number"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The elevation of a location.",
"title": "Elevation"
},
"line": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"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.",
"title": "Line"
},
"polygon": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"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 spacedelimited points where the first and final points are identical.",
"title": "Polygon"
}
}
}
}
}
]
},
"PeopleAudience": {
"title": "People Audience",
"anyOf": [
{
"$ref": "#/definitions/Audience"
}
],
"description": "A set of characteristics belonging to people, e.g. who compose an item's target audience.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PeopleAudience",
"http://schema.org/MedicalAudience",
"http://schema.org/ParentAudience"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"suggestedGender": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The gender of the person or audience.",
"title": "Suggested Gender"
},
"suggestedMinAge": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "Minimal age recommended for viewing content",
"title": "Suggested Min Age"
},
"healthCondition": {
"items": {
"$ref": "#/definitions/MedicalCondition"
},
"additionalItems": false,
"type": "array",
"description": "Expectations for health conditions of target audience",
"title": "Health Condition"
},
"suggestedMaxAge": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "Maximal age recommended for viewing content",
"title": "Suggested Max Age"
}
}
}
}
}
]
},
"InfectiousAgentClass": {
"title": "Infectious Agent Class",
"enum": [
"http://schema.org/Bacteria",
"http://schema.org/Fungus",
"http://schema.org/MulticellularParasite",
"http://schema.org/Prion",
"http://schema.org/Protozoa",
"http://schema.org/Virus"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Classes of agents or pathogens that transmit infectious diseases. Enumerated type.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"RVPark": {
"title": "RV Park",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "An RV park.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/RVPark"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"SkiResort": {
"title": "Ski Resort",
"anyOf": [
{
"$ref": "#/definitions/SportsActivityLocation"
}
],
"description": "A ski resort.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SkiResort"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ItemAvailability": {
"title": "Item Availability",
"enum": [
"http://schema.org/Discontinued",
"http://schema.org/InStock",
"http://schema.org/InStoreOnly",
"http://schema.org/OnlineOnly",
"http://schema.org/OutOfStock",
"http://schema.org/PreOrder"
],
"anyOf": [
{
"$ref": "#/definitions/Enumeration"
}
],
"description": "A list of possible product availablity options.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"FireStation": {
"title": "Fire Station",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
},
{
"$ref": "#/definitions/EmergencyService"
}
],
"description": "A fire station. With firemen.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/FireStation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ConvenienceStore": {
"title": "Convenience Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A convenience store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ConvenienceStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Brand": {
"title": "Brand",
"anyOf": [
{
"$ref": "#/definitions/Intangible"
}
],
"description": "A brand is a name used by an organization or business person for labeling a product, product group, or similar.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Brand"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"logo": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/URL"
},
{
"$ref": "#/definitions/ImageObject"
}
]
},
"additionalItems": false,
"type": "array",
"description": "URL of an image for the logo of the item.",
"title": "Logo"
}
}
}
}
}
]
},
"SoftwareApplication": {
"title": "Software Application",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A software application.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SoftwareApplication",
"http://schema.org/MobileApplication",
"http://schema.org/WebApplication"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"fileFormat": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "MIME format of the binary (e.g. application/zip).",
"title": "File Format"
},
"countriesNotSupported": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.",
"title": "Countries Not Supported"
},
"screenshot": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/ImageObject"
},
{
"$ref": "#/definitions/URL"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A link to a screenshot image of the app.",
"title": "Screenshot"
},
"installUrl": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "URL at which the app may be installed, if different from the URL of the item.",
"title": "Install Url"
},
"applicationCategory": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/URL"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Type of software application, e.g. \"Game, Multimedia\".",
"title": "Application Category"
},
"releaseNotes": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/URL"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Description of what changed in this version.",
"title": "Release Notes"
},
"fileSize": {
"items": {
"$ref": "#/definitions/Integer"
},
"additionalItems": false,
"type": "array",
"description": "Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.",
"title": "File Size"
},
"countriesSupported": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.",
"title": "Countries Supported"
},
"memoryRequirements": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/URL"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Minimum memory requirements.",
"title": "Memory Requirements"
},
"downloadUrl": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "If the file can be downloaded, URL to download the binary.",
"title": "Download Url"
},
"processorRequirements": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Processor architecture required to run the application (e.g. IA64).",
"title": "Processor Requirements"
},
"softwareVersion": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Version of the software instance.",
"title": "Software Version"
},
"storageRequirements": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/URL"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Storage requirements (free space required).",
"title": "Storage Requirements"
},
"featureList": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/URL"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Features or modules provided by this application (and possibly required by other applications).",
"title": "Feature List"
},
"device": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Device required to run the application. Used in cases where a specific make/model is required to run the application.",
"title": "Device"
},
"requirements": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/URL"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).",
"title": "Requirements"
},
"applicationSubCategory": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/URL"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Subcategory of the application, e.g. \"Arcade Game\".",
"title": "Application Sub Category"
},
"operatingSystem": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Operating systems supported (Windows 7, OSX 10.6, Android 1.6).",
"title": "Operating System"
},
"applicationSuite": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The name of the application suite to which the application belongs (e.g. Excel belongs to Office)",
"title": "Application Suite"
},
"permissions": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).",
"title": "Permissions"
}
}
}
}
}
]
},
"MaximumDoseSchedule": {
"title": "Maximum Dose Schedule",
"anyOf": [
{
"$ref": "#/definitions/DoseSchedule"
}
],
"description": "The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MaximumDoseSchedule"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"SearchResultsPage": {
"title": "Search Results Page",
"anyOf": [
{
"$ref": "#/definitions/WebPage"
}
],
"description": "Web page type: Search results page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SearchResultsPage"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ComputerStore": {
"title": "Computer Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A computer store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ComputerStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MusicPlaylist": {
"title": "Music Playlist",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A collection of music tracks in playlist form.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MusicPlaylist",
"http://schema.org/MusicAlbum"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"track": {
"items": {
"$ref": "#/definitions/MusicRecording"
},
"additionalItems": false,
"type": "array",
"description": "A music recording (track)\u2014usually a single song.",
"title": "Track"
},
"tracks": {
"items": {
"$ref": "#/definitions/MusicRecording"
},
"additionalItems": false,
"type": "array",
"description": "A music recording (track)\u2014usually a single song (legacy spelling; see singular form, track).",
"title": "Tracks"
},
"numTracks": {
"items": {
"$ref": "#/definitions/Integer"
},
"additionalItems": false,
"type": "array",
"description": "The number of tracks in this album or playlist.",
"title": "Num Tracks"
}
}
}
}
}
]
},
"SocialEvent": {
"title": "Social Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Social event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SocialEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PaymentChargeSpecification": {
"title": "Payment Charge Specification",
"anyOf": [
{
"$ref": "#/definitions/PriceSpecification"
}
],
"description": "The costs of settling the payment using a particular payment method.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PaymentChargeSpecification"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"appliesToDeliveryMethod": {
"items": {
"$ref": "#/definitions/DeliveryMethod"
},
"additionalItems": false,
"type": "array",
"description": "The delivery method(s) to which the delivery charge or payment charge specification applies.",
"title": "Applies to Delivery Method"
},
"appliesToPaymentMethod": {
"items": {
"$ref": "#/definitions/PaymentMethod"
},
"additionalItems": false,
"type": "array",
"description": "The payment method(s) to which the payment charge specification applies.",
"title": "Applies to Payment Method"
}
}
}
}
}
]
},
"MedicalTestPanel": {
"title": "Medical Test Panel",
"anyOf": [
{
"$ref": "#/definitions/MedicalTest"
}
],
"description": "Any collection of tests commonly ordered together.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalTestPanel"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"subTest": {
"items": {
"$ref": "#/definitions/MedicalTest"
},
"additionalItems": false,
"type": "array",
"description": "A component test of the panel.",
"title": "Sub Test"
}
}
}
}
}
]
},
"Muscle": {
"title": "Muscle",
"anyOf": [
{
"$ref": "#/definitions/AnatomicalStructure"
}
],
"description": "A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Muscle"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"origin": {
"items": {
"$ref": "#/definitions/AnatomicalStructure"
},
"additionalItems": false,
"type": "array",
"description": "The place or point where a muscle arises.",
"title": "Origin"
},
"nerve": {
"items": {
"$ref": "#/definitions/Nerve"
},
"additionalItems": false,
"type": "array",
"description": "The underlying innervation associated with the muscle.",
"title": "Nerve"
},
"insertion": {
"items": {
"$ref": "#/definitions/AnatomicalStructure"
},
"additionalItems": false,
"type": "array",
"description": "The place of attachment of a muscle, or what the muscle moves.",
"title": "Insertion"
},
"action": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The movement the muscle generates.",
"title": "Action"
},
"bloodSupply": {
"items": {
"$ref": "#/definitions/Vessel"
},
"additionalItems": false,
"type": "array",
"description": "The blood vessel that carries blood from the heart to the muscle.",
"title": "Blood Supply"
},
"antagonist": {
"items": {
"$ref": "#/definitions/Muscle"
},
"additionalItems": false,
"type": "array",
"description": "The muscle whose action counteracts the specified muscle.",
"title": "Antagonist"
}
}
}
}
}
]
},
"FurnitureStore": {
"title": "Furniture Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A furniture store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/FurnitureStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Rating": {
"title": "Rating",
"anyOf": [
{
"$ref": "#/definitions/Intangible"
}
],
"description": "The rating of the video.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Rating",
"http://schema.org/AggregateRating"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"bestRating": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Number"
},
{
"$ref": "#/definitions/Text"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.",
"title": "Best Rating"
},
"worstRating": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Number"
},
{
"$ref": "#/definitions/Text"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.",
"title": "Worst Rating"
},
"ratingValue": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The rating for the content.",
"title": "Rating Value"
}
}
}
}
}
]
},
"UserBlocks": {
"title": "User Blocks",
"anyOf": [
{
"$ref": "#/definitions/UserInteraction"
}
],
"description": "User interaction: Block this content.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/UserBlocks"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DeliveryMethod": {
"title": "Delivery Method",
"anyOf": [
{
"$ref": "#/definitions/Enumeration"
}
],
"description": "A delivery method is a standardized procedure for transferring the product or service to the destination of fulfilment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\n\nCommonly used values:\n\nhttp://purl.org/goodrelations/v1#DeliveryModeDirectDownload\nhttp://purl.org/goodrelations/v1#DeliveryModeFreight\nhttp://purl.org/goodrelations/v1#DeliveryModeMail\nhttp://purl.org/goodrelations/v1#DeliveryModeOwnFleet\nhttp://purl.org/goodrelations/v1#DeliveryModePickUp\nhttp://purl.org/goodrelations/v1#DHL\nhttp://purl.org/goodrelations/v1#FederalExpress\nhttp://purl.org/goodrelations/v1#UPS",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DeliveryMethod",
"http://schema.org/ParcelService"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"OwnershipInfo": {
"title": "Ownership Info",
"anyOf": [
{
"$ref": "#/definitions/StructuredValue"
}
],
"description": "A structured value providing information about when a certain organization or person owned a certain product.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/OwnershipInfo"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"ownedFrom": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The date and time of obtaining the product.",
"title": "Owned From"
},
"acquiredFrom": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The organization or person from which the product was acquired.",
"title": "Acquired From"
},
"ownedThrough": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The date and time of giving up ownership on the product.",
"title": "Owned Through"
},
"typeOfGood": {
"items": {
"$ref": "#/definitions/Product"
},
"additionalItems": false,
"type": "array",
"description": "The product that this structured value is referring to.",
"title": "Type of Good"
}
}
}
}
}
]
},
"MusicGroup": {
"title": "Music Group",
"anyOf": [
{
"$ref": "#/definitions/PerformingGroup"
}
],
"description": "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MusicGroup"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"album": {
"items": {
"$ref": "#/definitions/MusicAlbum"
},
"additionalItems": false,
"type": "array",
"description": "A music album.",
"title": "Album"
},
"track": {
"items": {
"$ref": "#/definitions/MusicRecording"
},
"additionalItems": false,
"type": "array",
"description": "A music recording (track)\u2014usually a single song.",
"title": "Track"
},
"albums": {
"items": {
"$ref": "#/definitions/MusicAlbum"
},
"additionalItems": false,
"type": "array",
"description": "A collection of music albums (legacy spelling; see singular form, album).",
"title": "Albums"
},
"musicGroupMember": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A member of the music group\u2014for example, John, Paul, George, or Ringo.",
"title": "Music Group Member"
},
"tracks": {
"items": {
"$ref": "#/definitions/MusicRecording"
},
"additionalItems": false,
"type": "array",
"description": "A music recording (track)\u2014usually a single song (legacy spelling; see singular form, track).",
"title": "Tracks"
}
}
}
}
}
]
},
"WPHeader": {
"title": "WP Header",
"anyOf": [
{
"$ref": "#/definitions/WebPageElement"
}
],
"description": "The header section of the page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/WPHeader"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"NailSalon": {
"title": "Nail Salon",
"anyOf": [
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
}
],
"description": "A nail salon.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/NailSalon"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Synagogue": {
"title": "Synagogue",
"anyOf": [
{
"$ref": "#/definitions/PlaceOfWorship"
}
],
"description": "A synagogue.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Synagogue"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Courthouse": {
"title": "Courthouse",
"anyOf": [
{
"$ref": "#/definitions/GovernmentBuilding"
}
],
"description": "A courthouse.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Courthouse"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Hospital": {
"title": "Hospital",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
},
{
"$ref": "#/definitions/MedicalOrganization"
},
{
"$ref": "#/definitions/EmergencyService"
}
],
"description": "A hospital.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Hospital"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"availableService": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/MedicalTest"
},
{
"$ref": "#/definitions/MedicalProcedure"
},
{
"$ref": "#/definitions/MedicalTherapy"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A medical service available from this provider.",
"title": "Available Service"
},
"medicalSpecialty": {
"items": {
"$ref": "#/definitions/MedicalSpecialty"
},
"additionalItems": false,
"type": "array",
"description": "A medical specialty of the provider.",
"title": "Medical Specialty"
}
}
}
}
}
]
},
"TattooParlor": {
"title": "Tattoo Parlor",
"anyOf": [
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
}
],
"description": "A tattoo parlor.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TattooParlor"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Photograph": {
"title": "Photograph",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A photograph.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Photograph"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Zoo": {
"title": "Zoo",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A zoo.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Zoo"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DataDownload": {
"title": "Data Download",
"anyOf": [
{
"$ref": "#/definitions/MediaObject"
}
],
"description": "A dataset in downloadable form.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DataDownload"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BloodTest": {
"title": "Blood Test",
"anyOf": [
{
"$ref": "#/definitions/MedicalTest"
}
],
"description": "A medical test performed on a sample of a patient's blood.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BloodTest"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"RecyclingCenter": {
"title": "Recycling Center",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A recycling center.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/RecyclingCenter"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AnatomicalSystem": {
"title": "Anatomical System",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can includes circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AnatomicalSystem"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"relatedStructure": {
"items": {
"$ref": "#/definitions/AnatomicalStructure"
},
"additionalItems": false,
"type": "array",
"description": "Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system.",
"title": "Related Structure"
},
"associatedPathophysiology": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.",
"title": "Associated Pathophysiology"
},
"comprisedOf": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/AnatomicalStructure"
},
{
"$ref": "#/definitions/AnatomicalSystem"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The underlying anatomical structures, such as organs, that comprise the anatomical system.",
"title": "Comprised of"
},
"relatedCondition": {
"items": {
"$ref": "#/definitions/MedicalCondition"
},
"additionalItems": false,
"type": "array",
"description": "A medical condition associated with this anatomy.",
"title": "Related Condition"
},
"relatedTherapy": {
"items": {
"$ref": "#/definitions/MedicalTherapy"
},
"additionalItems": false,
"type": "array",
"description": "A medical therapy related to this anatomy.",
"title": "Related Therapy"
}
}
}
}
}
]
},
"Park": {
"title": "Park",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A park.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Park"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AutoRental": {
"title": "Auto Rental",
"anyOf": [
{
"$ref": "#/definitions/AutomotiveBusiness"
}
],
"description": "A car rental business.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AutoRental"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BodyOfWater": {
"title": "Body of Water",
"anyOf": [
{
"$ref": "#/definitions/Landform"
}
],
"description": "A body of water, such as a sea, ocean, or lake.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BodyOfWater",
"http://schema.org/Canal",
"http://schema.org/LakeBodyOfWater",
"http://schema.org/OceanBodyOfWater",
"http://schema.org/Pond",
"http://schema.org/Reservoir",
"http://schema.org/RiverBodyOfWater",
"http://schema.org/SeaBodyOfWater",
"http://schema.org/Waterfall"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalEvidenceLevel": {
"title": "Medical Evidence Level",
"enum": [
"http://schema.org/EvidenceLevelA",
"http://schema.org/EvidenceLevelB",
"http://schema.org/EvidenceLevelC"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Level of evidence for a medical guideline. Enumerated type.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"NewsArticle": {
"title": "News Article",
"anyOf": [
{
"$ref": "#/definitions/Article"
}
],
"description": "A news article",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/NewsArticle"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"printEdition": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The edition of the print product in which the NewsArticle appears.",
"title": "Print Edition"
},
"dateline": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The location where the NewsArticle was produced.",
"title": "Dateline"
},
"printColumn": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The number of the column in which the NewsArticle appears in the print edition.",
"title": "Print Column"
},
"printPage": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).",
"title": "Print Page"
},
"printSection": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "If this NewsArticle appears in print, this field indicates the print section in which the article appeared.",
"title": "Print Section"
}
}
}
}
}
]
},
"ComedyEvent": {
"title": "Comedy Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Comedy event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ComedyEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"SeaBodyOfWater": {
"title": "Sea Body of Water",
"anyOf": [
{
"$ref": "#/definitions/BodyOfWater"
}
],
"description": "A sea (for example, the Caspian sea).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SeaBodyOfWater"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MusicRecording": {
"title": "Music Recording",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A music recording (track), usually a single song.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MusicRecording"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"duration": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format.",
"title": "Duration"
},
"inPlaylist": {
"items": {
"$ref": "#/definitions/MusicPlaylist"
},
"additionalItems": false,
"type": "array",
"description": "The playlist to which this recording belongs.",
"title": "In Playlist"
},
"byArtist": {
"items": {
"$ref": "#/definitions/MusicGroup"
},
"additionalItems": false,
"type": "array",
"description": "The artist that performed this album or recording.",
"title": "By Artist"
},
"inAlbum": {
"items": {
"$ref": "#/definitions/MusicAlbum"
},
"additionalItems": false,
"type": "array",
"description": "The album to which this recording belongs.",
"title": "In Album"
}
}
}
}
}
]
},
"DataCatalog": {
"title": "Data Catalog",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A collection of datasets.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DataCatalog"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"dataset": {
"items": {
"$ref": "#/definitions/Dataset"
},
"additionalItems": false,
"type": "array",
"description": "A dataset contained in a catalog.",
"title": "Dataset"
}
}
}
}
}
]
},
"DefenceEstablishment": {
"title": "Defence Establishment",
"anyOf": [
{
"$ref": "#/definitions/GovernmentBuilding"
}
],
"description": "A defence establishment, such as an army or navy base.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DefenceEstablishment"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"WholesaleStore": {
"title": "Wholesale Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A wholesale store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/WholesaleStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalImagingTechnique": {
"title": "Medical Imaging Technique",
"enum": [
"http://schema.org/CT",
"http://schema.org/MRI",
"http://schema.org/PET",
"http://schema.org/Ultrasound",
"http://schema.org/XRay"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Any medical imaging modality typically used for diagnostic purposes. Enumerated type.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"MedicalSpecialty": {
"title": "Medical Specialty",
"enum": [
"http://schema.org/Anesthesia",
"http://schema.org/Cardiovascular",
"http://schema.org/CommunityHealth",
"http://schema.org/Dentistry",
"http://schema.org/Dermatologic",
"http://schema.org/DietNutrition",
"http://schema.org/Emergency",
"http://schema.org/Endocrine",
"http://schema.org/Gastroenterologic",
"http://schema.org/Genetic",
"http://schema.org/Geriatric",
"http://schema.org/Gynecologic",
"http://schema.org/Hematologic",
"http://schema.org/Infectious",
"http://schema.org/LaboratoryScience",
"http://schema.org/Midwifery",
"http://schema.org/Musculoskeletal",
"http://schema.org/Neurologic",
"http://schema.org/Nursing",
"http://schema.org/Obstetric",
"http://schema.org/OccupationalTherapy",
"http://schema.org/Oncologic",
"http://schema.org/Optometic",
"http://schema.org/Otolaryngologic",
"http://schema.org/Pathology",
"http://schema.org/Pediatric",
"http://schema.org/PharmacySpecialty",
"http://schema.org/Physiotherapy",
"http://schema.org/PlasticSurgery",
"http://schema.org/Podiatric",
"http://schema.org/PrimaryCare",
"http://schema.org/Psychiatric",
"http://schema.org/PublicHealth",
"http://schema.org/Pulmonary",
"http://schema.org/Radiograpy",
"http://schema.org/Renal",
"http://schema.org/RespiratoryTherapy",
"http://schema.org/Rheumatologic",
"http://schema.org/SpeechPathology",
"http://schema.org/Surgical",
"http://schema.org/Toxicologic",
"http://schema.org/Urologic"
],
"anyOf": [
{
"$ref": "#/definitions/Specialty"
},
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"CollectionPage": {
"title": "Collection Page",
"anyOf": [
{
"$ref": "#/definitions/WebPage"
}
],
"description": "Web page type: Collection page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/CollectionPage",
"http://schema.org/ImageGallery",
"http://schema.org/VideoGallery"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"TouristAttraction": {
"title": "Tourist Attraction",
"anyOf": [
{
"$ref": "#/definitions/Place"
}
],
"description": "A tourist attraction.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TouristAttraction"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DanceEvent": {
"title": "Dance Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: A social dance.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DanceEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PoliceStation": {
"title": "Police Station",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
},
{
"$ref": "#/definitions/EmergencyService"
}
],
"description": "A police station.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PoliceStation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"UserPlays": {
"title": "User Plays",
"anyOf": [
{
"$ref": "#/definitions/UserInteraction"
}
],
"description": "User interaction: Play count of an item, for example a video or a song.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/UserPlays"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ShoppingCenter": {
"title": "Shopping Center",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A shopping center or mall.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ShoppingCenter"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Specialty": {
"title": "Specialty",
"anyOf": [
{
"$ref": "#/definitions/Enumeration"
}
],
"description": "Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Specialty",
"http://schema.org/MedicalSpecialty"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"VeterinaryCare": {
"title": "Veterinary Care",
"anyOf": [
{
"$ref": "#/definitions/MedicalOrganization"
}
],
"description": "A vet's office.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/VeterinaryCare"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalRiskEstimator": {
"title": "Medical Risk Estimator",
"anyOf": [
{
"$ref": "#/definitions/MedicalEntity"
}
],
"description": "Any rule set or interactive tool for estimating the risk of developing a complication or condition.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalRiskEstimator",
"http://schema.org/MedicalRiskCalculator",
"http://schema.org/MedicalRiskScore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"estimatesRiskOf": {
"items": {
"$ref": "#/definitions/MedicalEntity"
},
"additionalItems": false,
"type": "array",
"description": "The condition, complication, or symptom whose risk is being estimated.",
"title": "Estimates Risk of"
},
"includedRiskFactor": {
"items": {
"$ref": "#/definitions/MedicalRiskFactor"
},
"additionalItems": false,
"type": "array",
"description": "A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.",
"title": "Included Risk Factor"
}
}
}
}
}
]
},
"AutoBodyShop": {
"title": "Auto Body Shop",
"anyOf": [
{
"$ref": "#/definitions/AutomotiveBusiness"
}
],
"description": "Auto body shop.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AutoBodyShop"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AdultEntertainment": {
"title": "Adult Entertainment",
"anyOf": [
{
"$ref": "#/definitions/EntertainmentBusiness"
}
],
"description": "An adult entertainment establishment.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AdultEntertainment"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Dentist": {
"title": "Dentist",
"anyOf": [
{
"$ref": "#/definitions/MedicalOrganization"
},
{
"$ref": "#/definitions/ProfessionalService"
}
],
"description": "A dentist.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Dentist"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"WarrantyPromise": {
"title": "Warranty Promise",
"anyOf": [
{
"$ref": "#/definitions/StructuredValue"
}
],
"description": "A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/WarrantyPromise"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"durationOfWarranty": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.",
"title": "Duration of Warranty"
},
"warrantyScope": {
"items": {
"$ref": "#/definitions/WarrantyScope"
},
"additionalItems": false,
"type": "array",
"description": "The scope of the warranty promise.",
"title": "Warranty Scope"
}
}
}
}
}
]
},
"ImageGallery": {
"title": "Image Gallery",
"anyOf": [
{
"$ref": "#/definitions/CollectionPage"
}
],
"description": "Web page type: Image gallery page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ImageGallery"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"SiteNavigationElement": {
"title": "Site Navigation Element",
"anyOf": [
{
"$ref": "#/definitions/WebPageElement"
}
],
"description": "A navigation element of the page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SiteNavigationElement"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Casino": {
"title": "Casino",
"anyOf": [
{
"$ref": "#/definitions/EntertainmentBusiness"
}
],
"description": "A casino.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Casino"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"UserDownloads": {
"title": "User Downloads",
"anyOf": [
{
"$ref": "#/definitions/UserInteraction"
}
],
"description": "User interaction: Download of an item.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/UserDownloads"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MobileApplication": {
"title": "Mobile Application",
"anyOf": [
{
"$ref": "#/definitions/SoftwareApplication"
}
],
"description": "A mobile software application.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MobileApplication"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"carrierRequirements": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).",
"title": "Carrier Requirements"
}
}
}
}
}
]
},
"Sculpture": {
"title": "Sculpture",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A piece of sculpture.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Sculpture"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ArtGallery": {
"title": "Art Gallery",
"anyOf": [
{
"$ref": "#/definitions/EntertainmentBusiness"
}
],
"description": "An art gallery.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ArtGallery"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"InsuranceAgency": {
"title": "Insurance Agency",
"anyOf": [
{
"$ref": "#/definitions/FinancialService"
}
],
"description": "Insurance agency.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/InsuranceAgency"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Number": {
"type": "number",
"description": "Data type: Number.",
"title": "Number"
},
"LakeBodyOfWater": {
"title": "Lake Body of Water",
"anyOf": [
{
"$ref": "#/definitions/BodyOfWater"
}
],
"description": "A lake (for example, Lake Pontrachain).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/LakeBodyOfWater"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"RecommendedDoseSchedule": {
"title": "Recommended Dose Schedule",
"anyOf": [
{
"$ref": "#/definitions/DoseSchedule"
}
],
"description": "A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/RecommendedDoseSchedule"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"HomeGoodsStore": {
"title": "Home Goods Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A home goods store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/HomeGoodsStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Church": {
"title": "Church",
"anyOf": [
{
"$ref": "#/definitions/PlaceOfWorship"
}
],
"description": "A church.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Church"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"FastFoodRestaurant": {
"title": "Fast Food Restaurant",
"anyOf": [
{
"$ref": "#/definitions/FoodEstablishment"
}
],
"description": "A fast-food restaurant.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/FastFoodRestaurant"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"City": {
"title": "City",
"anyOf": [
{
"$ref": "#/definitions/AdministrativeArea"
}
],
"description": "A city or town.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/City"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"GasStation": {
"title": "Gas Station",
"anyOf": [
{
"$ref": "#/definitions/AutomotiveBusiness"
}
],
"description": "A gas station.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/GasStation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"UserPageVisits": {
"title": "User Page Visits",
"anyOf": [
{
"$ref": "#/definitions/UserInteraction"
}
],
"description": "User interaction: Visit to a web page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/UserPageVisits"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"LegislativeBuilding": {
"title": "Legislative Building",
"anyOf": [
{
"$ref": "#/definitions/GovernmentBuilding"
}
],
"description": "A legislative building\u2014for example, the state capitol.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/LegislativeBuilding"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ToyStore": {
"title": "Toy Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A toystore.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ToyStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PhysicalActivity": {
"title": "Physical Activity",
"anyOf": [
{
"$ref": "#/definitions/LifestyleModification"
}
],
"description": "Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PhysicalActivity",
"http://schema.org/ExercisePlan"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"associatedAnatomy": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/AnatomicalSystem"
},
{
"$ref": "#/definitions/SuperficialAnatomy"
},
{
"$ref": "#/definitions/AnatomicalStructure"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The anatomy of the underlying organ system or structures associated with this entity.",
"title": "Associated Anatomy"
},
"category": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/PhysicalActivityCategory"
},
{
"$ref": "#/definitions/Thing"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
"title": "Category"
},
"pathophysiology": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.",
"title": "Pathophysiology"
},
"epidemiology": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The characteristics of associated patients, such as age, gender, race etc.",
"title": "Epidemiology"
}
}
}
}
}
]
},
"HighSchool": {
"title": "High School",
"anyOf": [
{
"$ref": "#/definitions/EducationalOrganization"
}
],
"description": "A high school.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/HighSchool"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Beach": {
"title": "Beach",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "Beach.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Beach"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Product": {
"title": "Product",
"anyOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "A product is anything that is made available for sale\u2014for example, a pair of shoes, a concert ticket, or a car. Commodity services, like haircuts, can also be represented using this type.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Product",
"http://schema.org/IndividualProduct",
"http://schema.org/ProductModel",
"http://schema.org/SomeProducts"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"isConsumableFor": {
"items": {
"$ref": "#/definitions/Product"
},
"additionalItems": false,
"type": "array",
"description": "A pointer to another product (or multiple products) for which this product is a consumable.",
"title": "Is Consumable for"
},
"weight": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The weight of the product.",
"title": "Weight"
},
"isAccessoryOrSparePartFor": {
"items": {
"$ref": "#/definitions/Product"
},
"additionalItems": false,
"type": "array",
"description": "A pointer to another product (or multiple products) for which this product is an accessory or spare part.",
"title": "Is Accessory or Spare Part for"
},
"color": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The color of the product.",
"title": "Color"
},
"gtin8": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN.",
"title": "Gtin8"
},
"height": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Distance"
},
{
"$ref": "#/definitions/QuantitativeValue"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The height of the item.",
"title": "Height"
},
"releaseDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The release date of a product or product model. This can be used to distinguish the exact variant of a product.",
"title": "Release Date"
},
"isRelatedTo": {
"items": {
"$ref": "#/definitions/Product"
},
"additionalItems": false,
"type": "array",
"description": "A pointer to another, somehow related product (or multiple products).",
"title": "Is Related to"
},
"logo": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/URL"
},
{
"$ref": "#/definitions/ImageObject"
}
]
},
"additionalItems": false,
"type": "array",
"description": "URL of an image for the logo of the item.",
"title": "Logo"
},
"productID": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The product identifier, such as ISBN. For example: <meta itemprop='productID' content='isbn:123-456-789'/>.",
"title": "Product ID"
},
"sku": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
"title": "Sku"
},
"isSimilarTo": {
"items": {
"$ref": "#/definitions/Product"
},
"additionalItems": false,
"type": "array",
"description": "A pointer to another, functionally similar product (or multiple products).",
"title": "Is Similar to"
},
"review": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "A review of the item.",
"title": "Review"
},
"depth": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Distance"
},
{
"$ref": "#/definitions/QuantitativeValue"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The depth of the product.",
"title": "Depth"
},
"width": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Distance"
},
{
"$ref": "#/definitions/QuantitativeValue"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The width of the item.",
"title": "Width"
},
"offers": {
"items": {
"$ref": "#/definitions/Offer"
},
"additionalItems": false,
"type": "array",
"description": "An offer to sell this item\u2014for example, an offer to sell a product, the DVD of a movie, or tickets to an event.",
"title": "Offers"
},
"mpn": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
"title": "Mpn"
},
"brand": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Brand"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.",
"title": "Brand"
},
"itemCondition": {
"items": {
"$ref": "#/definitions/OfferItemCondition"
},
"additionalItems": false,
"type": "array",
"description": "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.",
"title": "Item Condition"
},
"manufacturer": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "The manufacturer of the product.",
"title": "Manufacturer"
},
"aggregateRating": {
"items": {
"$ref": "#/definitions/AggregateRating"
},
"additionalItems": false,
"type": "array",
"description": "The overall rating, based on a collection of reviews or ratings, of the item.",
"title": "Aggregate Rating"
},
"reviews": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "Review of the item (legacy spelling; see singular form, review).",
"title": "Reviews"
},
"gtin14": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The GTIN-14 code of the product, or the product to which the offer refers.",
"title": "Gtin14"
},
"audience": {
"items": {
"$ref": "#/definitions/Audience"
},
"additionalItems": false,
"type": "array",
"description": "The intended audience of the item, i.e. the group for whom the item was created.",
"title": "Audience"
},
"gtin13": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero.",
"title": "Gtin13"
},
"model": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/ProductModel"
},
{
"$ref": "#/definitions/Text"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.",
"title": "Model"
}
}
}
}
}
]
},
"BuddhistTemple": {
"title": "Buddhist Temple",
"anyOf": [
{
"$ref": "#/definitions/PlaceOfWorship"
}
],
"description": "A Buddhist temple.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BuddhistTemple"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"RealEstateAgent": {
"title": "Real Estate Agent",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A real-estate agent.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/RealEstateAgent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"UserTweets": {
"title": "User Tweets",
"anyOf": [
{
"$ref": "#/definitions/UserInteraction"
}
],
"description": "User interaction: Tweets.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/UserTweets"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"RiverBodyOfWater": {
"title": "River Body of Water",
"anyOf": [
{
"$ref": "#/definitions/BodyOfWater"
}
],
"description": "A river (for example, the broad majestic Shannon).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/RiverBodyOfWater"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"TherapeuticProcedure": {
"title": "Therapeutic Procedure",
"anyOf": [
{
"$ref": "#/definitions/MedicalProcedure"
},
{
"$ref": "#/definitions/MedicalTherapy"
}
],
"description": "A medical procedure intended primarly for therapeutic purposes, aimed at improving a health condition.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TherapeuticProcedure"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"WebPage": {
"title": "Web Page",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"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",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/WebPage",
"http://schema.org/AboutPage",
"http://schema.org/CheckoutPage",
"http://schema.org/CollectionPage",
"http://schema.org/ImageGallery",
"http://schema.org/VideoGallery",
"http://schema.org/ContactPage",
"http://schema.org/ItemPage",
"http://schema.org/MedicalWebPage",
"http://schema.org/ProfilePage",
"http://schema.org/SearchResultsPage"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"mainContentOfPage": {
"items": {
"$ref": "#/definitions/WebPageElement"
},
"additionalItems": false,
"type": "array",
"description": "Indicates if this web page element is the main subject of the page.",
"title": "Main Content of Page"
},
"reviewedBy": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "People or organizations that have reviewed the content on this web page for accuracy and/or completeness.",
"title": "Reviewed by"
},
"significantLinks": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most (legacy spelling; see singular form, significantLink).",
"title": "Significant Links"
},
"lastReviewed": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "Date on which the content on this web page was last reviewed for accuracy and/or completeness.",
"title": "Last Reviewed"
},
"specialty": {
"items": {
"$ref": "#/definitions/Specialty"
},
"additionalItems": false,
"type": "array",
"description": "One of the domain specialities to which this web page's content applies.",
"title": "Specialty"
},
"breadcrumb": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A set of links that can help a user understand and navigate a website hierarchy.",
"title": "Breadcrumb"
},
"significantLink": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.",
"title": "Significant Link"
},
"isPartOf": {
"items": {
"$ref": "#/definitions/CollectionPage"
},
"additionalItems": false,
"type": "array",
"description": "Indicates the collection or gallery to which the item belongs.",
"title": "Is Part of"
},
"primaryImageOfPage": {
"items": {
"$ref": "#/definitions/ImageObject"
},
"additionalItems": false,
"type": "array",
"description": "Indicates the main image on the page",
"title": "Primary Image of Page"
},
"relatedLink": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "A link related to this web page, for example to other related web pages.",
"title": "Related Link"
}
}
}
}
}
]
},
"PhysicalActivityCategory": {
"title": "Physical Activity Category",
"enum": [
"http://schema.org/AerobicActivity",
"http://schema.org/AnaerobicActivity",
"http://schema.org/Balance",
"http://schema.org/Flexibility",
"http://schema.org/LeisureTimeActivity",
"http://schema.org/OccupationalActivity",
"http://schema.org/StrengthTraining"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Categories of physical activity, organized by physiologic classification.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"BowlingAlley": {
"title": "Bowling Alley",
"anyOf": [
{
"$ref": "#/definitions/SportsActivityLocation"
}
],
"description": "A bowling alley.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BowlingAlley"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"TheaterGroup": {
"title": "Theater Group",
"anyOf": [
{
"$ref": "#/definitions/PerformingGroup"
}
],
"description": "A theater group or company\u2014for example, the Royal Shakespeare Company or Druid Theatre.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TheaterGroup"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Distance": {
"title": "Distance",
"anyOf": [
{
"$ref": "#/definitions/Quantity"
}
],
"description": "Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Distance"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Residence": {
"title": "Residence",
"anyOf": [
{
"$ref": "#/definitions/Place"
}
],
"description": "The place where a person lives.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Residence",
"http://schema.org/ApartmentComplex",
"http://schema.org/GatedResidenceCommunity",
"http://schema.org/SingleFamilyResidence"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalObservationalStudyDesign": {
"title": "Medical Observational Study Design",
"enum": [
"http://schema.org/CaseSeries",
"http://schema.org/CohortStudy",
"http://schema.org/CrossSectional",
"http://schema.org/Longitudinal",
"http://schema.org/Observational",
"http://schema.org/Registry"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Design models for observational medical studies. Enumerated type.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"Audience": {
"title": "Audience",
"enum": [
"http://schema.org/Researcher"
],
"anyOf": [
{
"$ref": "#/definitions/Intangible"
}
],
"description": "Intended audience for an item, i.e. the group for whom the item was created.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"ElectronicsStore": {
"title": "Electronics Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "An electronics store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ElectronicsStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MusicStore": {
"title": "Music Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A music store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MusicStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Winery": {
"title": "Winery",
"anyOf": [
{
"$ref": "#/definitions/FoodEstablishment"
}
],
"description": "A winery.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Winery"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MotorcycleRepair": {
"title": "Motorcycle Repair",
"anyOf": [
{
"$ref": "#/definitions/AutomotiveBusiness"
}
],
"description": "A motorcycle repair shop.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MotorcycleRepair"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DataType": {
"oneOf": [
{
"$ref": "#/definitions/Boolean"
},
{
"$ref": "#/definitions/Date"
},
{
"$ref": "#/definitions/DateTime"
},
{
"$ref": "#/definitions/Number"
},
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/Time"
}
],
"description": "The basic data types such as Integers, Strings, etc.",
"title": "Data Type"
},
"LandmarksOrHistoricalBuildings": {
"title": "Landmarks or Historical Buildings",
"anyOf": [
{
"$ref": "#/definitions/Place"
}
],
"description": "An historical landmark or building.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/LandmarksOrHistoricalBuildings"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"OutletStore": {
"title": "Outlet Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "An outlet store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/OutletStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ExercisePlan": {
"title": "Exercise Plan",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
},
{
"$ref": "#/definitions/PhysicalActivity"
}
],
"description": "Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ExercisePlan"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"workload": {
"items": {
"$ref": "#/definitions/Energy"
},
"additionalItems": false,
"type": "array",
"description": "Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure.",
"title": "Workload"
},
"activityDuration": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "Length of time to engage in the activity.",
"title": "Activity Duration"
},
"exerciseType": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.",
"title": "Exercise Type"
},
"repetitions": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "Number of times one should repeat the activity.",
"title": "Repetitions"
},
"additionalVariable": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.",
"title": "Additional Variable"
},
"restPeriods": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "How often one should break from the activity.",
"title": "Rest Periods"
},
"intensity": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement.",
"title": "Intensity"
},
"activityFrequency": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "How often one should engage in the activity.",
"title": "Activity Frequency"
}
}
}
}
}
]
},
"Florist": {
"title": "Florist",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A florist.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Florist"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Table": {
"title": "Table",
"anyOf": [
{
"$ref": "#/definitions/WebPageElement"
}
],
"description": "A table on the page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Table"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MusicVideoObject": {
"title": "Music Video Object",
"anyOf": [
{
"$ref": "#/definitions/MediaObject"
}
],
"description": "A music video file.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MusicVideoObject"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Playground": {
"title": "Playground",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A playground.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Playground"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"OceanBodyOfWater": {
"title": "Ocean Body of Water",
"anyOf": [
{
"$ref": "#/definitions/BodyOfWater"
}
],
"description": "An ocean (for example, the Pacific).",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/OceanBodyOfWater"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AutomatedTeller": {
"title": "Automated Teller",
"anyOf": [
{
"$ref": "#/definitions/FinancialService"
}
],
"description": "ATM/cash machine.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AutomatedTeller"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Offer": {
"title": "Offer",
"anyOf": [
{
"$ref": "#/definitions/Intangible"
}
],
"description": "An offer to sell an item\u2014for example, an offer to sell a product, the DVD of a movie, or tickets to an event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Offer",
"http://schema.org/AggregateOffer"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"warranty": {
"items": {
"$ref": "#/definitions/WarrantyPromise"
},
"additionalItems": false,
"type": "array",
"description": "The warranty promise(s) included in the offer.",
"title": "Warranty"
},
"priceValidUntil": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The date after which the price is no longer available.",
"title": "Price Valid Until"
},
"eligibleRegion": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/GeoShape"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.",
"title": "Eligible Region"
},
"businessFunction": {
"items": {
"$ref": "#/definitions/BusinessFunction"
},
"additionalItems": false,
"type": "array",
"description": "The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.",
"title": "Business Function"
},
"deliveryLeadTime": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The typical delay between the receipt of the order and the goods leaving the warehouse.",
"title": "Delivery Lead Time"
},
"aggregateRating": {
"items": {
"$ref": "#/definitions/AggregateRating"
},
"additionalItems": false,
"type": "array",
"description": "The overall rating, based on a collection of reviews or ratings, of the item.",
"title": "Aggregate Rating"
},
"category": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/PhysicalActivityCategory"
},
{
"$ref": "#/definitions/Thing"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.",
"title": "Category"
},
"availability": {
"items": {
"$ref": "#/definitions/ItemAvailability"
},
"additionalItems": false,
"type": "array",
"description": "The availability of this item\u2014for example In stock, Out of stock, Pre-order, etc.",
"title": "Availability"
},
"sku": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.",
"title": "Sku"
},
"includesObject": {
"items": {
"$ref": "#/definitions/TypeAndQuantityNode"
},
"additionalItems": false,
"type": "array",
"description": "This links to a node or nodes indicating the exact quantity of the products included in the offer.",
"title": "Includes Object"
},
"availableDeliveryMethod": {
"items": {
"$ref": "#/definitions/DeliveryMethod"
},
"additionalItems": false,
"type": "array",
"description": "The delivery method(s) available for this offer.",
"title": "Available Delivery Method"
},
"review": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "A review of the item.",
"title": "Review"
},
"validThrough": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The end of the validity of offer, price specification, or opening hours data.",
"title": "Valid Through"
},
"seller": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The seller.",
"title": "Seller"
},
"availabilityStarts": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The beginning of the availability of the product or service included in the offer.",
"title": "Availability Starts"
},
"eligibleDuration": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The duration for which the given offer is valid.",
"title": "Eligible Duration"
},
"addOn": {
"items": {
"$ref": "#/definitions/Offer"
},
"additionalItems": false,
"type": "array",
"description": "An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).",
"title": "Add On"
},
"inventoryLevel": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The current approximate inventory level for the item or items.",
"title": "Inventory Level"
},
"availableAtOrFrom": {
"items": {
"$ref": "#/definitions/Place"
},
"additionalItems": false,
"type": "array",
"description": "The place(s) from which the offer can be obtained (e.g. store locations).",
"title": "Available At or From"
},
"mpn": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.",
"title": "Mpn"
},
"price": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/Number"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.",
"title": "Price"
},
"eligibleCustomerType": {
"items": {
"$ref": "#/definitions/BusinessEntityType"
},
"additionalItems": false,
"type": "array",
"description": "The type(s) of customers for which the given offer is valid.",
"title": "Eligible Customer Type"
},
"priceSpecification": {
"items": {
"$ref": "#/definitions/PriceSpecification"
},
"additionalItems": false,
"type": "array",
"description": "One or more detailed price specifications, indicating the unit price and delivery or payment charges.",
"title": "Price Specification"
},
"acceptedPaymentMethod": {
"items": {
"$ref": "#/definitions/PaymentMethod"
},
"additionalItems": false,
"type": "array",
"description": "The payment method(s) accepted by seller for this offer.",
"title": "Accepted Payment Method"
},
"eligibleTransactionVolume": {
"items": {
"$ref": "#/definitions/PriceSpecification"
},
"additionalItems": false,
"type": "array",
"description": "The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.",
"title": "Eligible Transaction Volume"
},
"gtin8": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN.",
"title": "Gtin8"
},
"eligibleQuantity": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.",
"title": "Eligible Quantity"
},
"itemCondition": {
"items": {
"$ref": "#/definitions/OfferItemCondition"
},
"additionalItems": false,
"type": "array",
"description": "A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.",
"title": "Item Condition"
},
"availabilityEnds": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The end of the availability of the product or service included in the offer.",
"title": "Availability Ends"
},
"priceCurrency": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The currency (in 3-letter ISO 4217 format) of the offer price or a price component, when attached to PriceSpecification and its subtypes.",
"title": "Price Currency"
},
"serialNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.",
"title": "Serial Number"
},
"reviews": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "Review of the item (legacy spelling; see singular form, review).",
"title": "Reviews"
},
"gtin14": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The GTIN-14 code of the product, or the product to which the offer refers.",
"title": "Gtin14"
},
"itemOffered": {
"items": {
"$ref": "#/definitions/Product"
},
"additionalItems": false,
"type": "array",
"description": "The item being sold.",
"title": "Item Offered"
},
"gtin13": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero.",
"title": "Gtin13"
},
"validFrom": {
"items": {
"$ref": "#/definitions/DateTime"
},
"additionalItems": false,
"type": "array",
"description": "The beginning of the validity of offer, price specification, or opening hours data.",
"title": "Valid From"
},
"advanceBookingRequirement": {
"items": {
"$ref": "#/definitions/QuantitativeValue"
},
"additionalItems": false,
"type": "array",
"description": "The amount of time that is required between accepting the offer and the actual usage of the resource or service.",
"title": "Advance Booking Requirement"
}
}
}
}
}
]
},
"AboutPage": {
"title": "About Page",
"anyOf": [
{
"$ref": "#/definitions/WebPage"
}
],
"description": "Web page type: About page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AboutPage"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"WPFooter": {
"title": "WP Footer",
"anyOf": [
{
"$ref": "#/definitions/WebPageElement"
}
],
"description": "The footer section of the page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/WPFooter"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"SportsActivityLocation": {
"title": "Sports Activity Location",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A sports location, such as a playing field.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SportsActivityLocation",
"http://schema.org/BowlingAlley",
"http://schema.org/ExerciseGym",
"http://schema.org/GolfCourse",
"http://schema.org/HealthClub",
"http://schema.org/PublicSwimmingPool",
"http://schema.org/SkiResort",
"http://schema.org/SportsClub",
"http://schema.org/StadiumOrArena",
"http://schema.org/TennisComplex"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"SelfStorage": {
"title": "Self Storage",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "Self-storage facility.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SelfStorage"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Aquarium": {
"title": "Aquarium",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "Aquarium.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Aquarium"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Notary": {
"title": "Notary",
"anyOf": [
{
"$ref": "#/definitions/ProfessionalService"
}
],
"description": "A notary.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Notary"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"FinancialService": {
"title": "Financial Service",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "Financial services business.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/FinancialService",
"http://schema.org/AccountingService",
"http://schema.org/AutomatedTeller",
"http://schema.org/BankOrCreditUnion",
"http://schema.org/InsuranceAgency"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AudioObject": {
"title": "Audio Object",
"anyOf": [
{
"$ref": "#/definitions/MediaObject"
}
],
"description": "An audio file.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AudioObject"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"transcript": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "If this MediaObject is an AudioObject or VideoObject, the transcript of that object.",
"title": "Transcript"
}
}
}
}
}
]
},
"TouristInformationCenter": {
"title": "Tourist Information Center",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A tourist information center.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TouristInformationCenter"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Restaurant": {
"title": "Restaurant",
"anyOf": [
{
"$ref": "#/definitions/FoodEstablishment"
}
],
"description": "A restaurant.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Restaurant"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"RadiationTherapy": {
"title": "Radiation Therapy",
"anyOf": [
{
"$ref": "#/definitions/MedicalTherapy"
}
],
"description": "A process of care using radiation aimed at improving a health condition.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/RadiationTherapy"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ProfilePage": {
"title": "Profile Page",
"anyOf": [
{
"$ref": "#/definitions/WebPage"
}
],
"description": "Web page type: Profile page.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ProfilePage"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BeautySalon": {
"title": "Beauty Salon",
"anyOf": [
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
}
],
"description": "Beauty salon.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BeautySalon"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Drug": {
"title": "Drug",
"anyOf": [
{
"$ref": "#/definitions/MedicalTherapy"
}
],
"description": "A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Drug"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"relatedDrug": {
"items": {
"$ref": "#/definitions/Drug"
},
"additionalItems": false,
"type": "array",
"description": "Any other drug related to this one, for example commonly-prescribed alternatives.",
"title": "Related Drug"
},
"isAvailableGenerically": {
"items": {
"$ref": "#/definitions/Boolean"
},
"additionalItems": false,
"type": "array",
"description": "True if the drug is available in a generic form (regardless of name).",
"title": "Is Available Generically"
},
"cost": {
"items": {
"$ref": "#/definitions/DrugCost"
},
"additionalItems": false,
"type": "array",
"description": "Cost per unit of the drug, as reported by the source being tagged.",
"title": "Cost"
},
"pregnancyWarning": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy.",
"title": "Pregnancy Warning"
},
"legalStatus": {
"items": {
"$ref": "#/definitions/DrugLegalStatus"
},
"additionalItems": false,
"type": "array",
"description": "The drug or supplement's legal status, including any controlled substance schedules that apply.",
"title": "Legal Status"
},
"doseSchedule": {
"items": {
"$ref": "#/definitions/DoseSchedule"
},
"additionalItems": false,
"type": "array",
"description": "A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.",
"title": "Dose Schedule"
},
"interactingDrug": {
"items": {
"$ref": "#/definitions/Drug"
},
"additionalItems": false,
"type": "array",
"description": "Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.",
"title": "Interacting Drug"
},
"mechanismOfAction": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.",
"title": "Mechanism of Action"
},
"foodWarning": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.",
"title": "Food Warning"
},
"activeIngredient": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "An active ingredient, typically chemical compounds and/or biologic substances.",
"title": "Active Ingredient"
},
"prescriptionStatus": {
"items": {
"$ref": "#/definitions/DrugPrescriptionStatus"
},
"additionalItems": false,
"type": "array",
"description": "Indicates whether this drug is available by prescription or over-the-counter.",
"title": "Prescription Status"
},
"breastfeedingWarning": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.",
"title": "Breastfeeding Warning"
},
"alcoholWarning": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.",
"title": "Alcohol Warning"
},
"pregnancyCategory": {
"items": {
"$ref": "#/definitions/DrugPregnancyCategory"
},
"additionalItems": false,
"type": "array",
"description": "Pregnancy category of this drug.",
"title": "Pregnancy Category"
},
"dosageForm": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.",
"title": "Dosage Form"
},
"clincalPharmacology": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).",
"title": "Clincal Pharmacology"
},
"availableStrength": {
"items": {
"$ref": "#/definitions/DrugStrength"
},
"additionalItems": false,
"type": "array",
"description": "An available dosage strength for the drug.",
"title": "Available Strength"
},
"manufacturer": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "The manufacturer of the product.",
"title": "Manufacturer"
},
"labelDetails": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "Link to the drug's label details.",
"title": "Label Details"
},
"prescribingInfo": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "Link to prescribing information for the drug.",
"title": "Prescribing Info"
},
"administrationRoute": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A route by which this drug may be administered, e.g. 'oral'.",
"title": "Administration Route"
},
"overdosage": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.",
"title": "Overdosage"
},
"nonProprietaryName": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The generic name of this drug or supplement.",
"title": "Non Proprietary Name"
},
"drugClass": {
"items": {
"$ref": "#/definitions/DrugClass"
},
"additionalItems": false,
"type": "array",
"description": "The class of drug this belongs to (e.g., statins).",
"title": "Drug Class"
},
"isProprietary": {
"items": {
"$ref": "#/definitions/Boolean"
},
"additionalItems": false,
"type": "array",
"description": "True if this item's name is a proprietary/brand name (vs. generic name).",
"title": "Is Proprietary"
},
"warning": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Text"
},
{
"$ref": "#/definitions/URL"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Any FDA or other warnings about the drug (text or URL).",
"title": "Warning"
}
}
}
}
}
]
},
"Bakery": {
"title": "Bakery",
"anyOf": [
{
"$ref": "#/definitions/FoodEstablishment"
}
],
"description": "A bakery.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Bakery"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Landform": {
"title": "Landform",
"anyOf": [
{
"$ref": "#/definitions/Place"
}
],
"description": "A landform or physical feature. Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Landform",
"http://schema.org/BodyOfWater",
"http://schema.org/Canal",
"http://schema.org/LakeBodyOfWater",
"http://schema.org/OceanBodyOfWater",
"http://schema.org/Pond",
"http://schema.org/Reservoir",
"http://schema.org/RiverBodyOfWater",
"http://schema.org/SeaBodyOfWater",
"http://schema.org/Waterfall",
"http://schema.org/Continent",
"http://schema.org/Mountain",
"http://schema.org/Volcano"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Volcano": {
"title": "Volcano",
"anyOf": [
{
"$ref": "#/definitions/Landform"
}
],
"description": "A volcano, like Fuji san",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Volcano"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalClinic": {
"title": "Medical Clinic",
"anyOf": [
{
"$ref": "#/definitions/MedicalOrganization"
}
],
"description": "A medical clinic.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalClinic"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"availableService": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/MedicalTest"
},
{
"$ref": "#/definitions/MedicalProcedure"
},
{
"$ref": "#/definitions/MedicalTherapy"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A medical service available from this provider.",
"title": "Available Service"
},
"medicalSpecialty": {
"items": {
"$ref": "#/definitions/MedicalSpecialty"
},
"additionalItems": false,
"type": "array",
"description": "A medical specialty of the provider.",
"title": "Medical Specialty"
}
}
}
}
}
]
},
"CreditCard": {
"title": "Credit Card",
"anyOf": [
{
"$ref": "#/definitions/PaymentMethod"
}
],
"description": "A credit or debit card type as a standardized procedure for transferring the monetary amount for a purchase.\n\nCommonly used values:\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",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/CreditCard"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalGuidelineContraindication": {
"title": "Medical Guideline Contraindication",
"anyOf": [
{
"$ref": "#/definitions/MedicalGuideline"
}
],
"description": "A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalGuidelineContraindication"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ClothingStore": {
"title": "Clothing Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A clothing store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ClothingStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"FoodEvent": {
"title": "Food Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Food event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/FoodEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BusinessEvent": {
"title": "Business Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Business event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BusinessEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"HairSalon": {
"title": "Hair Salon",
"anyOf": [
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
}
],
"description": "A hair salon.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/HairSalon"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PerformingArtsTheater": {
"title": "Performing Arts Theater",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A theatre or other performing art center.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PerformingArtsTheater"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Mosque": {
"title": "Mosque",
"anyOf": [
{
"$ref": "#/definitions/PlaceOfWorship"
}
],
"description": "A mosque.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Mosque"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Pharmacy": {
"title": "Pharmacy",
"anyOf": [
{
"$ref": "#/definitions/MedicalOrganization"
}
],
"description": "A pharmacy or drugstore.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Pharmacy"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"DietarySupplement": {
"title": "Dietary Supplement",
"anyOf": [
{
"$ref": "#/definitions/MedicalTherapy"
}
],
"description": "A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/DietarySupplement"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"activeIngredient": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "An active ingredient, typically chemical compounds and/or biologic substances.",
"title": "Active Ingredient"
},
"dosageForm": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.",
"title": "Dosage Form"
},
"nonProprietaryName": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The generic name of this drug or supplement.",
"title": "Non Proprietary Name"
},
"mechanismOfAction": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.",
"title": "Mechanism of Action"
},
"safetyConsideration": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Any potential safety concern associated with the supplement. May include interactions with other drugs and foods, pregnancy, breastfeeding, known adverse reactions, and documented efficacy of the supplement.",
"title": "Safety Consideration"
},
"targetPopulation": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.",
"title": "Target Population"
},
"background": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Descriptive information establishing a historical perspective on the supplement. May include the rationale for the name, the population where the supplement first came to prominence, etc.",
"title": "Background"
},
"recommendedIntake": {
"items": {
"$ref": "#/definitions/RecommendedDoseSchedule"
},
"additionalItems": false,
"type": "array",
"description": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.",
"title": "Recommended Intake"
},
"isProprietary": {
"items": {
"$ref": "#/definitions/Boolean"
},
"additionalItems": false,
"type": "array",
"description": "True if this item's name is a proprietary/brand name (vs. generic name).",
"title": "Is Proprietary"
},
"maximumIntake": {
"items": {
"$ref": "#/definitions/MaximumDoseSchedule"
},
"additionalItems": false,
"type": "array",
"description": "Recommended intake of this supplement for a given population as defined by a specific recommending authority.",
"title": "Maximum Intake"
},
"legalStatus": {
"items": {
"$ref": "#/definitions/DrugLegalStatus"
},
"additionalItems": false,
"type": "array",
"description": "The drug or supplement's legal status, including any controlled substance schedules that apply.",
"title": "Legal Status"
},
"manufacturer": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "The manufacturer of the product.",
"title": "Manufacturer"
}
}
}
}
}
]
},
"MedicineSystem": {
"title": "Medicine System",
"enum": [
"http://schema.org/Ayurvedic",
"http://schema.org/Chiropractic",
"http://schema.org/Homeopathic",
"http://schema.org/Osteopathic",
"http://schema.org/TraditionalChinese",
"http://schema.org/WesternConventional"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Systems of medical practice.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"PetStore": {
"title": "Pet Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A pet store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PetStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"EmploymentAgency": {
"title": "Employment Agency",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "An employment agency.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/EmploymentAgency"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"GolfCourse": {
"title": "Golf Course",
"anyOf": [
{
"$ref": "#/definitions/SportsActivityLocation"
}
],
"description": "A golf course.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/GolfCourse"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PathologyTest": {
"title": "Pathology Test",
"anyOf": [
{
"$ref": "#/definitions/MedicalTest"
}
],
"description": "A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/PathologyTest"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"tissueSample": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The type of tissue sample required for the test.",
"title": "Tissue Sample"
}
}
}
}
}
]
},
"MedicalTrial": {
"title": "Medical Trial",
"anyOf": [
{
"$ref": "#/definitions/MedicalStudy"
}
],
"description": "A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalTrial"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"phase": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The phase of the trial.",
"title": "Phase"
},
"trialDesign": {
"items": {
"$ref": "#/definitions/MedicalTrialDesign"
},
"additionalItems": false,
"type": "array",
"description": "Specifics about the trial design (enumerated).",
"title": "Trial Design"
}
}
}
}
}
]
},
"DrugPregnancyCategory": {
"title": "Drug Pregnancy Category",
"enum": [
"http://schema.org/FDAcategoryA",
"http://schema.org/FDAcategoryB",
"http://schema.org/FDAcategoryC",
"http://schema.org/FDAcategoryD",
"http://schema.org/FDAcategoryX",
"http://schema.org/FDAnotEvaluated"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"ParentAudience": {
"title": "Parent Audience",
"anyOf": [
{
"$ref": "#/definitions/PeopleAudience"
}
],
"description": "A set of characteristics describing parents, who can be interested in viewing some content",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ParentAudience"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"childMaxAge": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "Maximal age of the child",
"title": "Child Max Age"
},
"childMinAge": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "Minimal age of the child",
"title": "Child Min Age"
}
}
}
}
}
]
},
"Class": {
"title": "Class",
"anyOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "A class, also often called a 'Type'; equivalent to rdfs:Class.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Class"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"School": {
"title": "School",
"anyOf": [
{
"$ref": "#/definitions/EducationalOrganization"
}
],
"description": "A school.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/School"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"UserInteraction": {
"title": "User Interaction",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "A user interacting with a page",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/UserInteraction",
"http://schema.org/UserBlocks",
"http://schema.org/UserCheckins",
"http://schema.org/UserComments",
"http://schema.org/UserDownloads",
"http://schema.org/UserLikes",
"http://schema.org/UserPageVisits",
"http://schema.org/UserPlays",
"http://schema.org/UserPlusOnes",
"http://schema.org/UserTweets"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"OfficeEquipmentStore": {
"title": "Office Equipment Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "An office equipment store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/OfficeEquipmentStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AutoRepair": {
"title": "Auto Repair",
"anyOf": [
{
"$ref": "#/definitions/AutomotiveBusiness"
}
],
"description": "Car repair business.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AutoRepair"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Thing": {
"title": "Thing",
"description": "The most generic type of item.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Thing",
"http://schema.org/Class",
"http://schema.org/CreativeWork",
"http://schema.org/Article",
"http://schema.org/BlogPosting",
"http://schema.org/NewsArticle",
"http://schema.org/ScholarlyArticle",
"http://schema.org/MedicalScholarlyArticle",
"http://schema.org/TechArticle",
"http://schema.org/APIReference",
"http://schema.org/Blog",
"http://schema.org/Book",
"http://schema.org/Code",
"http://schema.org/Comment",
"http://schema.org/DataCatalog",
"http://schema.org/Dataset",
"http://schema.org/Diet",
"http://schema.org/ExercisePlan",
"http://schema.org/ItemList",
"http://schema.org/Map",
"http://schema.org/MediaObject",
"http://schema.org/AudioObject",
"http://schema.org/DataDownload",
"http://schema.org/ImageObject",
"http://schema.org/MusicVideoObject",
"http://schema.org/VideoObject",
"http://schema.org/Movie",
"http://schema.org/MusicPlaylist",
"http://schema.org/MusicAlbum",
"http://schema.org/MusicRecording",
"http://schema.org/Painting",
"http://schema.org/Photograph",
"http://schema.org/Recipe",
"http://schema.org/Review",
"http://schema.org/Sculpture",
"http://schema.org/SoftwareApplication",
"http://schema.org/MobileApplication",
"http://schema.org/WebApplication",
"http://schema.org/TVEpisode",
"http://schema.org/TVSeason",
"http://schema.org/TVSeries",
"http://schema.org/WebPage",
"http://schema.org/AboutPage",
"http://schema.org/CheckoutPage",
"http://schema.org/CollectionPage",
"http://schema.org/ImageGallery",
"http://schema.org/VideoGallery",
"http://schema.org/ContactPage",
"http://schema.org/ItemPage",
"http://schema.org/MedicalWebPage",
"http://schema.org/ProfilePage",
"http://schema.org/SearchResultsPage",
"http://schema.org/WebPageElement",
"http://schema.org/SiteNavigationElement",
"http://schema.org/Table",
"http://schema.org/WPAdBlock",
"http://schema.org/WPFooter",
"http://schema.org/WPHeader",
"http://schema.org/WPSideBar",
"http://schema.org/Event",
"http://schema.org/BusinessEvent",
"http://schema.org/ChildrensEvent",
"http://schema.org/ComedyEvent",
"http://schema.org/DanceEvent",
"http://schema.org/EducationEvent",
"http://schema.org/Festival",
"http://schema.org/FoodEvent",
"http://schema.org/LiteraryEvent",
"http://schema.org/MusicEvent",
"http://schema.org/SaleEvent",
"http://schema.org/SocialEvent",
"http://schema.org/SportsEvent",
"http://schema.org/TheaterEvent",
"http://schema.org/UserInteraction",
"http://schema.org/UserBlocks",
"http://schema.org/UserCheckins",
"http://schema.org/UserComments",
"http://schema.org/UserDownloads",
"http://schema.org/UserLikes",
"http://schema.org/UserPageVisits",
"http://schema.org/UserPlays",
"http://schema.org/UserPlusOnes",
"http://schema.org/UserTweets",
"http://schema.org/VisualArtsEvent",
"http://schema.org/Intangible",
"http://schema.org/AlignmentObject",
"http://schema.org/Audience",
"http://schema.org/EducationalAudience",
"http://schema.org/MedicalAudience",
"http://schema.org/PeopleAudience",
"http://schema.org/ParentAudience",
"http://schema.org/Brand",
"http://schema.org/Demand",
"http://schema.org/Enumeration",
"http://schema.org/BookFormatType",
"http://schema.org/BusinessEntityType",
"http://schema.org/BusinessFunction",
"http://schema.org/DayOfWeek",
"http://schema.org/DeliveryMethod",
"http://schema.org/ParcelService",
"http://schema.org/ItemAvailability",
"http://schema.org/OfferItemCondition",
"http://schema.org/PaymentMethod",
"http://schema.org/CreditCard",
"http://schema.org/QualitativeValue",
"http://schema.org/Specialty",
"http://schema.org/MedicalSpecialty",
"http://schema.org/WarrantyScope",
"http://schema.org/JobPosting",
"http://schema.org/Language",
"http://schema.org/Offer",
"http://schema.org/AggregateOffer",
"http://schema.org/Quantity",
"http://schema.org/Distance",
"http://schema.org/Duration",
"http://schema.org/Energy",
"http://schema.org/Mass",
"http://schema.org/Rating",
"http://schema.org/AggregateRating",
"http://schema.org/StructuredValue",
"http://schema.org/ContactPoint",
"http://schema.org/PostalAddress",
"http://schema.org/GeoCoordinates",
"http://schema.org/GeoShape",
"http://schema.org/NutritionInformation",
"http://schema.org/OpeningHoursSpecification",
"http://schema.org/OwnershipInfo",
"http://schema.org/PriceSpecification",
"http://schema.org/DeliveryChargeSpecification",
"http://schema.org/PaymentChargeSpecification",
"http://schema.org/UnitPriceSpecification",
"http://schema.org/QuantitativeValue",
"http://schema.org/TypeAndQuantityNode",
"http://schema.org/WarrantyPromise",
"http://schema.org/MedicalEntity",
"http://schema.org/AnatomicalStructure",
"http://schema.org/Bone",
"http://schema.org/BrainStructure",
"http://schema.org/Joint",
"http://schema.org/Ligament",
"http://schema.org/Muscle",
"http://schema.org/Nerve",
"http://schema.org/Vessel",
"http://schema.org/Artery",
"http://schema.org/LymphaticVessel",
"http://schema.org/Vein",
"http://schema.org/AnatomicalSystem",
"http://schema.org/MedicalCause",
"http://schema.org/MedicalCondition",
"http://schema.org/InfectiousDisease",
"http://schema.org/MedicalContraindication",
"http://schema.org/MedicalDevice",
"http://schema.org/MedicalGuideline",
"http://schema.org/MedicalGuidelineContraindication",
"http://schema.org/MedicalGuidelineRecommendation",
"http://schema.org/MedicalIndication",
"http://schema.org/ApprovedIndication",
"http://schema.org/PreventionIndication",
"http://schema.org/TreatmentIndication",
"http://schema.org/MedicalIntangible",
"http://schema.org/DDxElement",
"http://schema.org/DoseSchedule",
"http://schema.org/MaximumDoseSchedule",
"http://schema.org/RecommendedDoseSchedule",
"http://schema.org/ReportedDoseSchedule",
"http://schema.org/DrugCost",
"http://schema.org/DrugLegalStatus",
"http://schema.org/DrugStrength",
"http://schema.org/MedicalCode",
"http://schema.org/MedicalConditionStage",
"http://schema.org/MedicalEnumeration",
"http://schema.org/DrugCostCategory",
"http://schema.org/DrugPregnancyCategory",
"http://schema.org/DrugPrescriptionStatus",
"http://schema.org/InfectiousAgentClass",
"http://schema.org/MedicalDevicePurpose",
"http://schema.org/MedicalEvidenceLevel",
"http://schema.org/MedicalImagingTechnique",
"http://schema.org/MedicalObservationalStudyDesign",
"http://schema.org/MedicalProcedureType",
"http://schema.org/MedicalStudyStatus",
"http://schema.org/MedicalTrialDesign",
"http://schema.org/MedicineSystem",
"http://schema.org/PhysicalActivityCategory",
"http://schema.org/PhysicalExam",
"http://schema.org/MedicalProcedure",
"http://schema.org/DiagnosticProcedure",
"http://schema.org/PalliativeProcedure",
"http://schema.org/TherapeuticProcedure",
"http://schema.org/MedicalRiskEstimator",
"http://schema.org/MedicalRiskCalculator",
"http://schema.org/MedicalRiskScore",
"http://schema.org/MedicalRiskFactor",
"http://schema.org/MedicalSignOrSymptom",
"http://schema.org/MedicalSign",
"http://schema.org/MedicalSymptom",
"http://schema.org/MedicalStudy",
"http://schema.org/MedicalObservationalStudy",
"http://schema.org/MedicalTrial",
"http://schema.org/MedicalTest",
"http://schema.org/BloodTest",
"http://schema.org/ImagingTest",
"http://schema.org/MedicalTestPanel",
"http://schema.org/PathologyTest",
"http://schema.org/MedicalTherapy",
"http://schema.org/DietarySupplement",
"http://schema.org/Drug",
"http://schema.org/DrugClass",
"http://schema.org/LifestyleModification",
"http://schema.org/PhysicalActivity",
"http://schema.org/PhysicalTherapy",
"http://schema.org/PsychologicalTreatment",
"http://schema.org/RadiationTherapy",
"http://schema.org/SuperficialAnatomy",
"http://schema.org/Organization",
"http://schema.org/Corporation",
"http://schema.org/EducationalOrganization",
"http://schema.org/CollegeOrUniversity",
"http://schema.org/ElementarySchool",
"http://schema.org/HighSchool",
"http://schema.org/MiddleSchool",
"http://schema.org/Preschool",
"http://schema.org/School",
"http://schema.org/GovernmentOrganization",
"http://schema.org/LocalBusiness",
"http://schema.org/AnimalShelter",
"http://schema.org/AutomotiveBusiness",
"http://schema.org/AutoBodyShop",
"http://schema.org/AutoDealer",
"http://schema.org/AutoPartsStore",
"http://schema.org/AutoRental",
"http://schema.org/AutoRepair",
"http://schema.org/AutoWash",
"http://schema.org/GasStation",
"http://schema.org/MotorcycleDealer",
"http://schema.org/MotorcycleRepair",
"http://schema.org/ChildCare",
"http://schema.org/DryCleaningOrLaundry",
"http://schema.org/EmergencyService",
"http://schema.org/FireStation",
"http://schema.org/Hospital",
"http://schema.org/PoliceStation",
"http://schema.org/EmploymentAgency",
"http://schema.org/EntertainmentBusiness",
"http://schema.org/AdultEntertainment",
"http://schema.org/AmusementPark",
"http://schema.org/ArtGallery",
"http://schema.org/Casino",
"http://schema.org/ComedyClub",
"http://schema.org/MovieTheater",
"http://schema.org/NightClub",
"http://schema.org/FinancialService",
"http://schema.org/AccountingService",
"http://schema.org/AutomatedTeller",
"http://schema.org/BankOrCreditUnion",
"http://schema.org/InsuranceAgency",
"http://schema.org/FoodEstablishment",
"http://schema.org/Bakery",
"http://schema.org/BarOrPub",
"http://schema.org/Brewery",
"http://schema.org/CafeOrCoffeeShop",
"http://schema.org/FastFoodRestaurant",
"http://schema.org/IceCreamShop",
"http://schema.org/Restaurant",
"http://schema.org/Winery",
"http://schema.org/GovernmentOffice",
"http://schema.org/PostOffice",
"http://schema.org/HealthAndBeautyBusiness",
"http://schema.org/BeautySalon",
"http://schema.org/DaySpa",
"http://schema.org/HairSalon",
"http://schema.org/HealthClub",
"http://schema.org/NailSalon",
"http://schema.org/TattooParlor",
"http://schema.org/HomeAndConstructionBusiness",
"http://schema.org/Electrician",
"http://schema.org/GeneralContractor",
"http://schema.org/HVACBusiness",
"http://schema.org/HousePainter",
"http://schema.org/Locksmith",
"http://schema.org/MovingCompany",
"http://schema.org/Plumber",
"http://schema.org/RoofingContractor",
"http://schema.org/InternetCafe",
"http://schema.org/Library",
"http://schema.org/LodgingBusiness",
"http://schema.org/BedAndBreakfast",
"http://schema.org/Hostel",
"http://schema.org/Hotel",
"http://schema.org/Motel",
"http://schema.org/MedicalOrganization",
"http://schema.org/Dentist",
"http://schema.org/DiagnosticLab",
"http://schema.org/MedicalClinic",
"http://schema.org/Optician",
"http://schema.org/Pharmacy",
"http://schema.org/Physician",
"http://schema.org/VeterinaryCare",
"http://schema.org/ProfessionalService",
"http://schema.org/Attorney",
"http://schema.org/Notary",
"http://schema.org/RadioStation",
"http://schema.org/RealEstateAgent",
"http://schema.org/RecyclingCenter",
"http://schema.org/SelfStorage",
"http://schema.org/ShoppingCenter",
"http://schema.org/SportsActivityLocation",
"http://schema.org/BowlingAlley",
"http://schema.org/ExerciseGym",
"http://schema.org/GolfCourse",
"http://schema.org/PublicSwimmingPool",
"http://schema.org/SkiResort",
"http://schema.org/SportsClub",
"http://schema.org/StadiumOrArena",
"http://schema.org/TennisComplex",
"http://schema.org/Store",
"http://schema.org/BikeStore",
"http://schema.org/BookStore",
"http://schema.org/ClothingStore",
"http://schema.org/ComputerStore",
"http://schema.org/ConvenienceStore",
"http://schema.org/DepartmentStore",
"http://schema.org/ElectronicsStore",
"http://schema.org/Florist",
"http://schema.org/FurnitureStore",
"http://schema.org/GardenStore",
"http://schema.org/GroceryStore",
"http://schema.org/HardwareStore",
"http://schema.org/HobbyShop",
"http://schema.org/HomeGoodsStore",
"http://schema.org/JewelryStore",
"http://schema.org/LiquorStore",
"http://schema.org/MensClothingStore",
"http://schema.org/MobilePhoneStore",
"http://schema.org/MovieRentalStore",
"http://schema.org/MusicStore",
"http://schema.org/OfficeEquipmentStore",
"http://schema.org/OutletStore",
"http://schema.org/PawnShop",
"http://schema.org/PetStore",
"http://schema.org/ShoeStore",
"http://schema.org/SportingGoodsStore",
"http://schema.org/TireShop",
"http://schema.org/ToyStore",
"http://schema.org/WholesaleStore",
"http://schema.org/TelevisionStation",
"http://schema.org/TouristInformationCenter",
"http://schema.org/TravelAgency",
"http://schema.org/NGO",
"http://schema.org/PerformingGroup",
"http://schema.org/DanceGroup",
"http://schema.org/MusicGroup",
"http://schema.org/TheaterGroup",
"http://schema.org/SportsTeam",
"http://schema.org/Person",
"http://schema.org/Place",
"http://schema.org/AdministrativeArea",
"http://schema.org/City",
"http://schema.org/Country",
"http://schema.org/State",
"http://schema.org/CivicStructure",
"http://schema.org/Airport",
"http://schema.org/Aquarium",
"http://schema.org/Beach",
"http://schema.org/BusStation",
"http://schema.org/BusStop",
"http://schema.org/Campground",
"http://schema.org/Cemetery",
"http://schema.org/Crematorium",
"http://schema.org/EventVenue",
"http://schema.org/GovernmentBuilding",
"http://schema.org/CityHall",
"http://schema.org/Courthouse",
"http://schema.org/DefenceEstablishment",
"http://schema.org/Embassy",
"http://schema.org/LegislativeBuilding",
"http://schema.org/Museum",
"http://schema.org/MusicVenue",
"http://schema.org/Park",
"http://schema.org/ParkingFacility",
"http://schema.org/PerformingArtsTheater",
"http://schema.org/PlaceOfWorship",
"http://schema.org/BuddhistTemple",
"http://schema.org/CatholicChurch",
"http://schema.org/Church",
"http://schema.org/HinduTemple",
"http://schema.org/Mosque",
"http://schema.org/Synagogue",
"http://schema.org/Playground",
"http://schema.org/RVPark",
"http://schema.org/SubwayStation",
"http://schema.org/TaxiStand",
"http://schema.org/TrainStation",
"http://schema.org/Zoo",
"http://schema.org/Landform",
"http://schema.org/BodyOfWater",
"http://schema.org/Canal",
"http://schema.org/LakeBodyOfWater",
"http://schema.org/OceanBodyOfWater",
"http://schema.org/Pond",
"http://schema.org/Reservoir",
"http://schema.org/RiverBodyOfWater",
"http://schema.org/SeaBodyOfWater",
"http://schema.org/Waterfall",
"http://schema.org/Continent",
"http://schema.org/Mountain",
"http://schema.org/Volcano",
"http://schema.org/LandmarksOrHistoricalBuildings",
"http://schema.org/Residence",
"http://schema.org/ApartmentComplex",
"http://schema.org/GatedResidenceCommunity",
"http://schema.org/SingleFamilyResidence",
"http://schema.org/TouristAttraction",
"http://schema.org/Product",
"http://schema.org/IndividualProduct",
"http://schema.org/ProductModel",
"http://schema.org/SomeProducts",
"http://schema.org/Property"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"url": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "URL of the item.",
"title": "URL"
},
"additionalType": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.",
"title": "Additional Type"
},
"image": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "URL of an image of the item.",
"title": "Image"
},
"description": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A short description of the item.",
"title": "Description"
},
"name": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The name of the item.",
"title": "Name"
}
}
}
}
}
]
},
"TennisComplex": {
"title": "Tennis Complex",
"anyOf": [
{
"$ref": "#/definitions/SportsActivityLocation"
}
],
"description": "A tennis complex.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TennisComplex"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Place": {
"title": "Place",
"anyOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "Entities that have a somewhat fixed, physical extension.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Place",
"http://schema.org/AdministrativeArea",
"http://schema.org/City",
"http://schema.org/Country",
"http://schema.org/State",
"http://schema.org/CivicStructure",
"http://schema.org/Airport",
"http://schema.org/Aquarium",
"http://schema.org/Beach",
"http://schema.org/BusStation",
"http://schema.org/BusStop",
"http://schema.org/Campground",
"http://schema.org/Cemetery",
"http://schema.org/Crematorium",
"http://schema.org/EventVenue",
"http://schema.org/FireStation",
"http://schema.org/GovernmentBuilding",
"http://schema.org/CityHall",
"http://schema.org/Courthouse",
"http://schema.org/DefenceEstablishment",
"http://schema.org/Embassy",
"http://schema.org/LegislativeBuilding",
"http://schema.org/Hospital",
"http://schema.org/MovieTheater",
"http://schema.org/Museum",
"http://schema.org/MusicVenue",
"http://schema.org/Park",
"http://schema.org/ParkingFacility",
"http://schema.org/PerformingArtsTheater",
"http://schema.org/PlaceOfWorship",
"http://schema.org/BuddhistTemple",
"http://schema.org/CatholicChurch",
"http://schema.org/Church",
"http://schema.org/HinduTemple",
"http://schema.org/Mosque",
"http://schema.org/Synagogue",
"http://schema.org/Playground",
"http://schema.org/PoliceStation",
"http://schema.org/RVPark",
"http://schema.org/StadiumOrArena",
"http://schema.org/SubwayStation",
"http://schema.org/TaxiStand",
"http://schema.org/TrainStation",
"http://schema.org/Zoo",
"http://schema.org/Landform",
"http://schema.org/BodyOfWater",
"http://schema.org/Canal",
"http://schema.org/LakeBodyOfWater",
"http://schema.org/OceanBodyOfWater",
"http://schema.org/Pond",
"http://schema.org/Reservoir",
"http://schema.org/RiverBodyOfWater",
"http://schema.org/SeaBodyOfWater",
"http://schema.org/Waterfall",
"http://schema.org/Continent",
"http://schema.org/Mountain",
"http://schema.org/Volcano",
"http://schema.org/LandmarksOrHistoricalBuildings",
"http://schema.org/LocalBusiness",
"http://schema.org/AnimalShelter",
"http://schema.org/AutomotiveBusiness",
"http://schema.org/AutoBodyShop",
"http://schema.org/AutoDealer",
"http://schema.org/AutoPartsStore",
"http://schema.org/AutoRental",
"http://schema.org/AutoRepair",
"http://schema.org/AutoWash",
"http://schema.org/GasStation",
"http://schema.org/MotorcycleDealer",
"http://schema.org/MotorcycleRepair",
"http://schema.org/ChildCare",
"http://schema.org/DryCleaningOrLaundry",
"http://schema.org/EmergencyService",
"http://schema.org/EmploymentAgency",
"http://schema.org/EntertainmentBusiness",
"http://schema.org/AdultEntertainment",
"http://schema.org/AmusementPark",
"http://schema.org/ArtGallery",
"http://schema.org/Casino",
"http://schema.org/ComedyClub",
"http://schema.org/NightClub",
"http://schema.org/FinancialService",
"http://schema.org/AccountingService",
"http://schema.org/AutomatedTeller",
"http://schema.org/BankOrCreditUnion",
"http://schema.org/InsuranceAgency",
"http://schema.org/FoodEstablishment",
"http://schema.org/Bakery",
"http://schema.org/BarOrPub",
"http://schema.org/Brewery",
"http://schema.org/CafeOrCoffeeShop",
"http://schema.org/FastFoodRestaurant",
"http://schema.org/IceCreamShop",
"http://schema.org/Restaurant",
"http://schema.org/Winery",
"http://schema.org/GovernmentOffice",
"http://schema.org/PostOffice",
"http://schema.org/HealthAndBeautyBusiness",
"http://schema.org/BeautySalon",
"http://schema.org/DaySpa",
"http://schema.org/HairSalon",
"http://schema.org/HealthClub",
"http://schema.org/NailSalon",
"http://schema.org/TattooParlor",
"http://schema.org/HomeAndConstructionBusiness",
"http://schema.org/Electrician",
"http://schema.org/GeneralContractor",
"http://schema.org/HVACBusiness",
"http://schema.org/HousePainter",
"http://schema.org/Locksmith",
"http://schema.org/MovingCompany",
"http://schema.org/Plumber",
"http://schema.org/RoofingContractor",
"http://schema.org/InternetCafe",
"http://schema.org/Library",
"http://schema.org/LodgingBusiness",
"http://schema.org/BedAndBreakfast",
"http://schema.org/Hostel",
"http://schema.org/Hotel",
"http://schema.org/Motel",
"http://schema.org/MedicalOrganization",
"http://schema.org/Dentist",
"http://schema.org/DiagnosticLab",
"http://schema.org/MedicalClinic",
"http://schema.org/Optician",
"http://schema.org/Pharmacy",
"http://schema.org/Physician",
"http://schema.org/VeterinaryCare",
"http://schema.org/ProfessionalService",
"http://schema.org/Attorney",
"http://schema.org/Notary",
"http://schema.org/RadioStation",
"http://schema.org/RealEstateAgent",
"http://schema.org/RecyclingCenter",
"http://schema.org/SelfStorage",
"http://schema.org/ShoppingCenter",
"http://schema.org/SportsActivityLocation",
"http://schema.org/BowlingAlley",
"http://schema.org/ExerciseGym",
"http://schema.org/GolfCourse",
"http://schema.org/PublicSwimmingPool",
"http://schema.org/SkiResort",
"http://schema.org/SportsClub",
"http://schema.org/TennisComplex",
"http://schema.org/Store",
"http://schema.org/BikeStore",
"http://schema.org/BookStore",
"http://schema.org/ClothingStore",
"http://schema.org/ComputerStore",
"http://schema.org/ConvenienceStore",
"http://schema.org/DepartmentStore",
"http://schema.org/ElectronicsStore",
"http://schema.org/Florist",
"http://schema.org/FurnitureStore",
"http://schema.org/GardenStore",
"http://schema.org/GroceryStore",
"http://schema.org/HardwareStore",
"http://schema.org/HobbyShop",
"http://schema.org/HomeGoodsStore",
"http://schema.org/JewelryStore",
"http://schema.org/LiquorStore",
"http://schema.org/MensClothingStore",
"http://schema.org/MobilePhoneStore",
"http://schema.org/MovieRentalStore",
"http://schema.org/MusicStore",
"http://schema.org/OfficeEquipmentStore",
"http://schema.org/OutletStore",
"http://schema.org/PawnShop",
"http://schema.org/PetStore",
"http://schema.org/ShoeStore",
"http://schema.org/SportingGoodsStore",
"http://schema.org/TireShop",
"http://schema.org/ToyStore",
"http://schema.org/WholesaleStore",
"http://schema.org/TelevisionStation",
"http://schema.org/TouristInformationCenter",
"http://schema.org/TravelAgency",
"http://schema.org/Residence",
"http://schema.org/ApartmentComplex",
"http://schema.org/GatedResidenceCommunity",
"http://schema.org/SingleFamilyResidence",
"http://schema.org/TouristAttraction"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"isicV4": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
"title": "Isic V4"
},
"map": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "A URL to a map of the place.",
"title": "Map"
},
"event": {
"items": {
"$ref": "#/definitions/Event"
},
"additionalItems": false,
"type": "array",
"description": "Upcoming or past event associated with this place or organization.",
"title": "Event"
},
"openingHoursSpecification": {
"items": {
"$ref": "#/definitions/OpeningHoursSpecification"
},
"additionalItems": false,
"type": "array",
"description": "The opening hours of a certain place.",
"title": "Opening Hours Specification"
},
"photo": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/ImageObject"
},
{
"$ref": "#/definitions/Photograph"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A photograph of this place.",
"title": "Photo"
},
"review": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "A review of the item.",
"title": "Review"
},
"aggregateRating": {
"items": {
"$ref": "#/definitions/AggregateRating"
},
"additionalItems": false,
"type": "array",
"description": "The overall rating, based on a collection of reviews or ratings, of the item.",
"title": "Aggregate Rating"
},
"containedIn": {
"items": {
"$ref": "#/definitions/Place"
},
"additionalItems": false,
"type": "array",
"description": "The basic containment relation between places.",
"title": "Contained in"
},
"photos": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/ImageObject"
},
{
"$ref": "#/definitions/Photograph"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Photographs of this place (legacy spelling; see singular form, photo).",
"title": "Photos"
},
"telephone": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The telephone number.",
"title": "Telephone"
},
"reviews": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "Review of the item (legacy spelling; see singular form, review).",
"title": "Reviews"
},
"maps": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "A URL to a map of the place (legacy spelling; see singular form, map).",
"title": "Maps"
},
"address": {
"items": {
"$ref": "#/definitions/PostalAddress"
},
"additionalItems": false,
"type": "array",
"description": "Physical address of the item.",
"title": "Address"
},
"interactionCount": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A count of a specific user interactions with this item\u2014for example, 20 UserLikes, 5 UserComments, or 300 UserDownloads. The user interaction type should be one of the sub types of UserInteraction.",
"title": "Interaction Count"
},
"logo": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/URL"
},
{
"$ref": "#/definitions/ImageObject"
}
]
},
"additionalItems": false,
"type": "array",
"description": "URL of an image for the logo of the item.",
"title": "Logo"
},
"faxNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The fax number.",
"title": "Fax Number"
},
"geo": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/GeoCoordinates"
},
{
"$ref": "#/definitions/GeoShape"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The geo coordinates of the place.",
"title": "Geo"
},
"events": {
"items": {
"$ref": "#/definitions/Event"
},
"additionalItems": false,
"type": "array",
"description": "Upcoming or past events associated with this place or organization (legacy spelling; see singular form, event).",
"title": "Events"
},
"globalLocationNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"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.",
"title": "Global Location Number"
}
}
}
}
}
]
},
"Property": {
"title": "Property",
"anyOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Property"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"rangeIncludes": {
"items": {
"$ref": "#/definitions/Class"
},
"additionalItems": false,
"type": "array",
"description": "Relates a property to a class that constitutes (one of) the expected type(s) for values of the property.",
"title": "Range Includes"
},
"domainIncludes": {
"items": {
"$ref": "#/definitions/Class"
},
"additionalItems": false,
"type": "array",
"description": "Relates a property to a class that is (one of) the type(s) the property is expected to be used on.",
"title": "Domain Includes"
}
}
}
}
}
]
},
"Comment": {
"title": "Comment",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the \"text\" property, and its topic via \"about\", properties shared with all CreativeWorks.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Comment"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Nerve": {
"title": "Nerve",
"anyOf": [
{
"$ref": "#/definitions/AnatomicalStructure"
}
],
"description": "A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Nerve"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"sourcedFrom": {
"items": {
"$ref": "#/definitions/BrainStructure"
},
"additionalItems": false,
"type": "array",
"description": "The neurological pathway that originates the neurons.",
"title": "Sourced From"
},
"nerveMotor": {
"items": {
"$ref": "#/definitions/Muscle"
},
"additionalItems": false,
"type": "array",
"description": "The neurological pathway extension that involves muscle control.",
"title": "Nerve Motor"
},
"sensoryUnit": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/AnatomicalStructure"
},
{
"$ref": "#/definitions/SuperficialAnatomy"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The neurological pathway extension that inputs and sends information to the brain or spinal cord.",
"title": "Sensory Unit"
},
"branch": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/AnatomicalStructure"
},
{
"$ref": "#/definitions/Nerve"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The branches that delineate from the nerve bundle.",
"title": "Branch"
}
}
}
}
}
]
},
"AutoPartsStore": {
"title": "Auto Parts Store",
"anyOf": [
{
"$ref": "#/definitions/AutomotiveBusiness"
},
{
"$ref": "#/definitions/Store"
}
],
"description": "An auto parts store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AutoPartsStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MotorcycleDealer": {
"title": "Motorcycle Dealer",
"anyOf": [
{
"$ref": "#/definitions/AutomotiveBusiness"
}
],
"description": "A motorcycle dealer.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MotorcycleDealer"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalCode": {
"title": "Medical Code",
"anyOf": [
{
"$ref": "#/definitions/MedicalIntangible"
}
],
"description": "A code for a medical entity.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalCode"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"codingSystem": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The coding system, e.g. 'ICD-10'.",
"title": "Coding System"
},
"codeValue": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The actual code.",
"title": "Code Value"
}
}
}
}
}
]
},
"ShoeStore": {
"title": "Shoe Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A shoe store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ShoeStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AnimalShelter": {
"title": "Animal Shelter",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "Animal shelter.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AnimalShelter"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"TVSeries": {
"title": "TV Series",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A television series.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TVSeries"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"startDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The start date and time of the event (in ISO 8601 date format).",
"title": "Start Date"
},
"endDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The end date and time of the event (in ISO 8601 date format).",
"title": "End Date"
},
"producer": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "The producer of the movie, TV series, season, or episode, or video.",
"title": "Producer"
},
"productionCompany": {
"items": {
"$ref": "#/definitions/Organization"
},
"additionalItems": false,
"type": "array",
"description": "The production company or studio that made the movie, TV series, season, or episode, or video.",
"title": "Production Company"
},
"season": {
"items": {
"$ref": "#/definitions/TVSeason"
},
"additionalItems": false,
"type": "array",
"description": "A season of a TV series.",
"title": "Season"
},
"musicBy": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Person"
},
{
"$ref": "#/definitions/MusicGroup"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The composer of the movie or TV soundtrack.",
"title": "Music by"
},
"actor": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A cast member of the movie, TV series, season, or episode, or video.",
"title": "Actor"
},
"director": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "The director of the movie, TV episode, or series.",
"title": "Director"
},
"episodes": {
"items": {
"$ref": "#/definitions/TVEpisode"
},
"additionalItems": false,
"type": "array",
"description": "The episode of a TV series or season (legacy spelling; see singular form, episode).",
"title": "Episodes"
},
"actors": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A cast member of the movie, TV series, season, or episode, or video. (legacy spelling; see singular form, actor)",
"title": "Actors"
},
"numberOfEpisodes": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The number of episodes in this season or series.",
"title": "Number of Episodes"
},
"seasons": {
"items": {
"$ref": "#/definitions/TVSeason"
},
"additionalItems": false,
"type": "array",
"description": "The seasons of the TV series (legacy spelling; see singular form, season).",
"title": "Seasons"
},
"episode": {
"items": {
"$ref": "#/definitions/TVEpisode"
},
"additionalItems": false,
"type": "array",
"description": "An episode of a TV series or season.",
"title": "Episode"
},
"trailer": {
"items": {
"$ref": "#/definitions/VideoObject"
},
"additionalItems": false,
"type": "array",
"description": "The trailer of the movie or TV series, season, or episode.",
"title": "Trailer"
}
}
}
}
}
]
},
"Pond": {
"title": "Pond",
"anyOf": [
{
"$ref": "#/definitions/BodyOfWater"
}
],
"description": "A pond",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Pond"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Hostel": {
"title": "Hostel",
"anyOf": [
{
"$ref": "#/definitions/LodgingBusiness"
}
],
"description": "A hostel.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Hostel"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"BookStore": {
"title": "Book Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A bookstore.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/BookStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"EducationEvent": {
"title": "Education Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Education event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/EducationEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Store": {
"title": "Store",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A retail good store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Store",
"http://schema.org/AutoPartsStore",
"http://schema.org/BikeStore",
"http://schema.org/BookStore",
"http://schema.org/ClothingStore",
"http://schema.org/ComputerStore",
"http://schema.org/ConvenienceStore",
"http://schema.org/DepartmentStore",
"http://schema.org/ElectronicsStore",
"http://schema.org/Florist",
"http://schema.org/FurnitureStore",
"http://schema.org/GardenStore",
"http://schema.org/GroceryStore",
"http://schema.org/HardwareStore",
"http://schema.org/HobbyShop",
"http://schema.org/HomeGoodsStore",
"http://schema.org/JewelryStore",
"http://schema.org/LiquorStore",
"http://schema.org/MensClothingStore",
"http://schema.org/MobilePhoneStore",
"http://schema.org/MovieRentalStore",
"http://schema.org/MusicStore",
"http://schema.org/OfficeEquipmentStore",
"http://schema.org/OutletStore",
"http://schema.org/PawnShop",
"http://schema.org/PetStore",
"http://schema.org/ShoeStore",
"http://schema.org/SportingGoodsStore",
"http://schema.org/TireShop",
"http://schema.org/ToyStore",
"http://schema.org/WholesaleStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Hotel": {
"title": "Hotel",
"anyOf": [
{
"$ref": "#/definitions/LodgingBusiness"
}
],
"description": "A hotel.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Hotel"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"InternetCafe": {
"title": "Internet Cafe",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "An internet cafe.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/InternetCafe"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalConditionStage": {
"title": "Medical Condition Stage",
"anyOf": [
{
"$ref": "#/definitions/MedicalIntangible"
}
],
"description": "A stage of a medical condition, such as 'Stage IIIa'.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalConditionStage"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"stageAsNumber": {
"items": {
"$ref": "#/definitions/Number"
},
"additionalItems": false,
"type": "array",
"description": "The stage represented as a number, e.g. 3.",
"title": "Stage As Number"
},
"subStageSuffix": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The substage, e.g. 'a' for Stage IIIa.",
"title": "Sub Stage Suffix"
}
}
}
}
}
]
},
"Integer": {
"type": "integer",
"description": "Data type: Integer.",
"title": "Integer"
},
"Airport": {
"title": "Airport",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "An airport.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Airport"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"GovernmentOffice": {
"title": "Government Office",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A government office\u2014for example, an IRS or DMV office.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/GovernmentOffice",
"http://schema.org/PostOffice"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalDevicePurpose": {
"title": "Medical Device Purpose",
"enum": [
"http://schema.org/Diagnostic",
"http://schema.org/Therapeutic"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Categories of medical devices, organized by the purpose or intended use of the device.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"UserPlusOnes": {
"title": "User Plus Ones",
"anyOf": [
{
"$ref": "#/definitions/UserInteraction"
}
],
"description": "User interaction: +1.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/UserPlusOnes"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"EducationalAudience": {
"title": "Educational Audience",
"anyOf": [
{
"$ref": "#/definitions/Audience"
}
],
"description": "An EducationalAudience",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/EducationalAudience"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"educationalRole": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "An educationalRole of an EducationalAudience",
"title": "Educational Role"
}
}
}
}
}
]
},
"MedicalSymptom": {
"title": "Medical Symptom",
"anyOf": [
{
"$ref": "#/definitions/MedicalSignOrSymptom"
}
],
"description": "Any indication of the existence of a medical condition or disease that is apparent to the patient.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalSymptom"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MobilePhoneStore": {
"title": "Mobile Phone Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A mobile-phone store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MobilePhoneStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalWebPage": {
"title": "Medical Web Page",
"anyOf": [
{
"$ref": "#/definitions/WebPage"
}
],
"description": "A web page that provides medical information.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalWebPage"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"aspect": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.",
"title": "Aspect"
}
}
}
}
}
]
},
"MedicalEnumeration": {
"title": "Medical Enumeration",
"anyOf": [
{
"$ref": "#/definitions/MedicalIntangible"
}
],
"description": "Enumerations related to health and the practice of medicine.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalEnumeration",
"http://schema.org/DrugCostCategory",
"http://schema.org/DrugPregnancyCategory",
"http://schema.org/DrugPrescriptionStatus",
"http://schema.org/InfectiousAgentClass",
"http://schema.org/MedicalAudience",
"http://schema.org/MedicalDevicePurpose",
"http://schema.org/MedicalEvidenceLevel",
"http://schema.org/MedicalImagingTechnique",
"http://schema.org/MedicalObservationalStudyDesign",
"http://schema.org/MedicalProcedureType",
"http://schema.org/MedicalSpecialty",
"http://schema.org/MedicalStudyStatus",
"http://schema.org/MedicalTrialDesign",
"http://schema.org/MedicineSystem",
"http://schema.org/PhysicalActivityCategory",
"http://schema.org/PhysicalExam"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalProcedureType": {
"title": "Medical Procedure Type",
"enum": [
"http://schema.org/NoninvasiveProcedure",
"http://schema.org/PercutaneousProcedure",
"http://schema.org/SurgicalProcedure"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "An enumeration that describes different types of medical procedures.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"MedicalObservationalStudy": {
"title": "Medical Observational Study",
"anyOf": [
{
"$ref": "#/definitions/MedicalStudy"
}
],
"description": "An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalObservationalStudy"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"studyDesign": {
"items": {
"$ref": "#/definitions/MedicalObservationalStudyDesign"
},
"additionalItems": false,
"type": "array",
"description": "Specifics about the observational study design (enumerated).",
"title": "Study Design"
}
}
}
}
}
]
},
"Cemetery": {
"title": "Cemetery",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A graveyard.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Cemetery"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Blog": {
"title": "Blog",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A blog",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Blog"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"blogPost": {
"items": {
"$ref": "#/definitions/BlogPosting"
},
"additionalItems": false,
"type": "array",
"description": "A posting that is part of this blog.",
"title": "Blog Post"
},
"blogPosts": {
"items": {
"$ref": "#/definitions/BlogPosting"
},
"additionalItems": false,
"type": "array",
"description": "The postings that are part of this blog (legacy spelling; see singular form, blogPost).",
"title": "Blog Posts"
}
}
}
}
}
]
},
"GovernmentBuilding": {
"title": "Government Building",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A government building.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/GovernmentBuilding",
"http://schema.org/CityHall",
"http://schema.org/Courthouse",
"http://schema.org/DefenceEstablishment",
"http://schema.org/Embassy",
"http://schema.org/LegislativeBuilding"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"InfectiousDisease": {
"title": "Infectious Disease",
"anyOf": [
{
"$ref": "#/definitions/MedicalCondition"
}
],
"description": "An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/InfectiousDisease"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"infectiousAgent": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The actual infectious agent, such as a specific bacterium.",
"title": "Infectious Agent"
},
"infectiousAgentClass": {
"items": {
"$ref": "#/definitions/InfectiousAgentClass"
},
"additionalItems": false,
"type": "array",
"description": "The class of infectious agent (bacteria, prion, etc.) that causes the disease.",
"title": "Infectious Agent Class"
},
"transmissionMethod": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.",
"title": "Transmission Method"
}
}
}
}
}
]
},
"SportsEvent": {
"title": "Sports Event",
"anyOf": [
{
"$ref": "#/definitions/Event"
}
],
"description": "Event type: Sports event.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SportsEvent"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"PhysicalExam": {
"title": "Physical Exam",
"enum": [
"http://schema.org/Abdomen",
"http://schema.org/Appearance",
"http://schema.org/CardiovascularExam",
"http://schema.org/Ear",
"http://schema.org/Eye",
"http://schema.org/Genitourinary",
"http://schema.org/Head",
"http://schema.org/Lung",
"http://schema.org/MusculoskeletalExam",
"http://schema.org/Neck",
"http://schema.org/Neuro",
"http://schema.org/Nose",
"http://schema.org/Skin",
"http://schema.org/Throat",
"http://schema.org/VitalSign"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "A type of physical examination of a patient performed by a physician. Enumerated type.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"Map": {
"title": "Map",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "A map.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Map"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"AccountingService": {
"title": "Accounting Service",
"anyOf": [
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/FinancialService"
}
],
"description": "Accountancy business.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/AccountingService"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"SubwayStation": {
"title": "Subway Station",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A subway station.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SubwayStation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"ScholarlyArticle": {
"title": "Scholarly Article",
"anyOf": [
{
"$ref": "#/definitions/Article"
}
],
"description": "A scholarly article.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ScholarlyArticle",
"http://schema.org/MedicalScholarlyArticle"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"CityHall": {
"title": "City Hall",
"anyOf": [
{
"$ref": "#/definitions/GovernmentBuilding"
}
],
"description": "A city hall.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/CityHall"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"Artery": {
"title": "Artery",
"anyOf": [
{
"$ref": "#/definitions/Vessel"
}
],
"description": "A type of blood vessel that specifically carries blood away from the heart.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Artery"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"source": {
"items": {
"$ref": "#/definitions/AnatomicalStructure"
},
"additionalItems": false,
"type": "array",
"description": "The anatomical or organ system that the artery originates from.",
"title": "Source"
},
"supplyTo": {
"items": {
"$ref": "#/definitions/AnatomicalStructure"
},
"additionalItems": false,
"type": "array",
"description": "The area to which the artery supplies blood to.",
"title": "Supply to"
},
"arterialBranch": {
"items": {
"$ref": "#/definitions/AnatomicalStructure"
},
"additionalItems": false,
"type": "array",
"description": "The branches that comprise the arterial structure.",
"title": "Arterial Branch"
}
}
}
}
}
]
},
"NutritionInformation": {
"title": "Nutrition Information",
"anyOf": [
{
"$ref": "#/definitions/StructuredValue"
}
],
"description": "Nutritional information about the recipe.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/NutritionInformation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"fatContent": {
"items": {
"$ref": "#/definitions/Mass"
},
"additionalItems": false,
"type": "array",
"description": "The number of grams of fat.",
"title": "Fat Content"
},
"calories": {
"items": {
"$ref": "#/definitions/Energy"
},
"additionalItems": false,
"type": "array",
"description": "The number of calories",
"title": "Calories"
},
"saturatedFatContent": {
"items": {
"$ref": "#/definitions/Mass"
},
"additionalItems": false,
"type": "array",
"description": "The number of grams of saturated fat.",
"title": "Saturated Fat Content"
},
"unsaturatedFatContent": {
"items": {
"$ref": "#/definitions/Mass"
},
"additionalItems": false,
"type": "array",
"description": "The number of grams of unsaturated fat.",
"title": "Unsaturated Fat Content"
},
"sodiumContent": {
"items": {
"$ref": "#/definitions/Mass"
},
"additionalItems": false,
"type": "array",
"description": "The number of milligrams of sodium.",
"title": "Sodium Content"
},
"fiberContent": {
"items": {
"$ref": "#/definitions/Mass"
},
"additionalItems": false,
"type": "array",
"description": "The number of grams of fiber.",
"title": "Fiber Content"
},
"cholesterolContent": {
"items": {
"$ref": "#/definitions/Mass"
},
"additionalItems": false,
"type": "array",
"description": "The number of milligrams of cholesterol.",
"title": "Cholesterol Content"
},
"carbohydrateContent": {
"items": {
"$ref": "#/definitions/Mass"
},
"additionalItems": false,
"type": "array",
"description": "The number of grams of carbohydrates.",
"title": "Carbohydrate Content"
},
"sugarContent": {
"items": {
"$ref": "#/definitions/Mass"
},
"additionalItems": false,
"type": "array",
"description": "The number of grams of sugar.",
"title": "Sugar Content"
},
"servingSize": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The serving size, in terms of the number of volume or mass",
"title": "Serving Size"
},
"transFatContent": {
"items": {
"$ref": "#/definitions/Mass"
},
"additionalItems": false,
"type": "array",
"description": "The number of grams of trans fat.",
"title": "Trans Fat Content"
},
"proteinContent": {
"items": {
"$ref": "#/definitions/Mass"
},
"additionalItems": false,
"type": "array",
"description": "The number of grams of protein.",
"title": "Protein Content"
}
}
}
}
}
]
},
"MedicalTrialDesign": {
"title": "Medical Trial Design",
"enum": [
"http://schema.org/DoubleBlindedTrial",
"http://schema.org/InternationalTrial",
"http://schema.org/MultiCenterTrial",
"http://schema.org/OpenTrial",
"http://schema.org/PlaceboControlledTrial",
"http://schema.org/RandomizedTrial",
"http://schema.org/SingleBlindedTrial",
"http://schema.org/SingleCenterTrial",
"http://schema.org/TripleBlindedTrial"
],
"anyOf": [
{
"$ref": "#/definitions/MedicalEnumeration"
}
],
"description": "Design models for medical trials. Enumerated type.",
"allOf": [
{
"$ref": "#/definitions/microdata"
}
]
},
"Country": {
"title": "Country",
"anyOf": [
{
"$ref": "#/definitions/AdministrativeArea"
}
],
"description": "A country.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Country"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"RadioStation": {
"title": "Radio Station",
"anyOf": [
{
"$ref": "#/definitions/LocalBusiness"
}
],
"description": "A radio station.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/RadioStation"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MusicAlbum": {
"title": "Music Album",
"anyOf": [
{
"$ref": "#/definitions/MusicPlaylist"
}
],
"description": "A collection of music tracks.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MusicAlbum"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"byArtist": {
"items": {
"$ref": "#/definitions/MusicGroup"
},
"additionalItems": false,
"type": "array",
"description": "The artist that performed this album or recording.",
"title": "By Artist"
}
}
}
}
}
]
},
"ItemList": {
"title": "Item List",
"anyOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"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.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ItemList"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"itemListElement": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A single list item.",
"title": "Item List Element"
},
"itemListOrder": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Type of ordering (e.g. Ascending, Descending, Unordered).",
"title": "Item List Order"
}
}
}
}
}
]
},
"ParcelService": {
"title": "Parcel Service",
"anyOf": [
{
"$ref": "#/definitions/DeliveryMethod"
}
],
"description": "A private parcel service as the delivery mode available for a certain offer.\n\nCommonly used values:\n\nhttp://purl.org/goodrelations/v1#DHL\nhttp://purl.org/goodrelations/v1#FederalExpress\nhttp://purl.org/goodrelations/v1#UPS",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/ParcelService"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"TaxiStand": {
"title": "Taxi Stand",
"anyOf": [
{
"$ref": "#/definitions/CivicStructure"
}
],
"description": "A taxi stand.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/TaxiStand"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"MedicalScholarlyArticle": {
"title": "Medical Scholarly Article",
"anyOf": [
{
"$ref": "#/definitions/ScholarlyArticle"
}
],
"description": "A scholarly article in the medical domain.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalScholarlyArticle"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"publicationType": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The type of the medical article, taken from the US NLM MeSH publication type catalog.",
"title": "Publication Type"
},
"citation": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/CreativeWork"
},
{
"$ref": "#/definitions/Text"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. NOTE: Candidate for promotion to ScholarlyArticle.",
"title": "Citation"
}
}
}
}
}
]
},
"Intangible": {
"title": "Intangible",
"anyOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/Intangible",
"http://schema.org/AlignmentObject",
"http://schema.org/Audience",
"http://schema.org/EducationalAudience",
"http://schema.org/MedicalAudience",
"http://schema.org/PeopleAudience",
"http://schema.org/ParentAudience",
"http://schema.org/Brand",
"http://schema.org/Demand",
"http://schema.org/Enumeration",
"http://schema.org/BookFormatType",
"http://schema.org/BusinessEntityType",
"http://schema.org/BusinessFunction",
"http://schema.org/DayOfWeek",
"http://schema.org/DeliveryMethod",
"http://schema.org/ParcelService",
"http://schema.org/ItemAvailability",
"http://schema.org/OfferItemCondition",
"http://schema.org/PaymentMethod",
"http://schema.org/CreditCard",
"http://schema.org/QualitativeValue",
"http://schema.org/Specialty",
"http://schema.org/MedicalSpecialty",
"http://schema.org/WarrantyScope",
"http://schema.org/JobPosting",
"http://schema.org/Language",
"http://schema.org/Offer",
"http://schema.org/AggregateOffer",
"http://schema.org/Quantity",
"http://schema.org/Distance",
"http://schema.org/Duration",
"http://schema.org/Energy",
"http://schema.org/Mass",
"http://schema.org/Rating",
"http://schema.org/AggregateRating",
"http://schema.org/StructuredValue",
"http://schema.org/ContactPoint",
"http://schema.org/PostalAddress",
"http://schema.org/GeoCoordinates",
"http://schema.org/GeoShape",
"http://schema.org/NutritionInformation",
"http://schema.org/OpeningHoursSpecification",
"http://schema.org/OwnershipInfo",
"http://schema.org/PriceSpecification",
"http://schema.org/DeliveryChargeSpecification",
"http://schema.org/PaymentChargeSpecification",
"http://schema.org/UnitPriceSpecification",
"http://schema.org/QuantitativeValue",
"http://schema.org/TypeAndQuantityNode",
"http://schema.org/WarrantyPromise"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"UserLikes": {
"title": "User Likes",
"anyOf": [
{
"$ref": "#/definitions/UserInteraction"
}
],
"description": "User interaction: Like an item.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/UserLikes"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
},
"SportingGoodsStore": {
"title": "Sporting Goods Store",
"anyOf": [
{
"$ref": "#/definitions/Store"
}
],
"description": "A sporting goods store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/SportingGoodsStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {}
}
}
]
}
},
"$schema": "http://json-schema.org/draft-04/schema#",
"properties": {
"items": {
"items": [
{
"allOf": [
{
"anyOf": [
{
"$ref": "#/definitions/MedicalSignOrSymptom"
},
{
"$ref": "#/definitions/MovieRentalStore"
},
{
"$ref": "#/definitions/EntertainmentBusiness"
},
{
"$ref": "#/definitions/IceCreamShop"
},
{
"$ref": "#/definitions/BusinessFunction"
},
{
"$ref": "#/definitions/PreventionIndication"
},
{
"$ref": "#/definitions/AutomotiveBusiness"
},
{
"$ref": "#/definitions/Joint"
},
{
"$ref": "#/definitions/APIReference"
},
{
"$ref": "#/definitions/Energy"
},
{
"$ref": "#/definitions/MedicalStudy"
},
{
"$ref": "#/definitions/GeoCoordinates"
},
{
"$ref": "#/definitions/Physician"
},
{
"$ref": "#/definitions/HousePainter"
},
{
"$ref": "#/definitions/Crematorium"
},
{
"$ref": "#/definitions/ParkingFacility"
},
{
"$ref": "#/definitions/UnitPriceSpecification"
},
{
"$ref": "#/definitions/StadiumOrArena"
},
{
"$ref": "#/definitions/Article"
},
{
"$ref": "#/definitions/SaleEvent"
},
{
"$ref": "#/definitions/CivicStructure"
},
{
"$ref": "#/definitions/HardwareStore"
},
{
"$ref": "#/definitions/OpeningHoursSpecification"
},
{
"$ref": "#/definitions/SportsClub"
},
{
"$ref": "#/definitions/MedicalProcedure"
},
{
"$ref": "#/definitions/BlogPosting"
},
{
"$ref": "#/definitions/ComedyClub"
},
{
"$ref": "#/definitions/EventVenue"
},
{
"$ref": "#/definitions/Recipe"
},
{
"$ref": "#/definitions/NightClub"
},
{
"$ref": "#/definitions/Ligament"
},
{
"$ref": "#/definitions/ElementarySchool"
},
{
"$ref": "#/definitions/Campground"
},
{
"$ref": "#/definitions/MovingCompany"
},
{
"$ref": "#/definitions/Festival"
},
{
"$ref": "#/definitions/BusinessEntityType"
},
{
"$ref": "#/definitions/MediaObject"
},
{
"$ref": "#/definitions/Enumeration"
},
{
"$ref": "#/definitions/SeaBodyOfWater"
},
{
"$ref": "#/definitions/BikeStore"
},
{
"$ref": "#/definitions/TVEpisode"
},
{
"$ref": "#/definitions/DayOfWeek"
},
{
"$ref": "#/definitions/AggregateOffer"
},
{
"$ref": "#/definitions/MedicalCause"
},
{
"$ref": "#/definitions/MedicalContraindication"
},
{
"$ref": "#/definitions/SingleFamilyResidence"
},
{
"$ref": "#/definitions/StructuredValue"
},
{
"$ref": "#/definitions/Waterfall"
},
{
"$ref": "#/definitions/Plumber"
},
{
"$ref": "#/definitions/UserComments"
},
{
"$ref": "#/definitions/TrainStation"
},
{
"$ref": "#/definitions/WPAdBlock"
},
{
"$ref": "#/definitions/BarOrPub"
},
{
"$ref": "#/definitions/DDxElement"
},
{
"$ref": "#/definitions/Reservoir"
},
{
"$ref": "#/definitions/ApartmentComplex"
},
{
"$ref": "#/definitions/AmusementPark"
},
{
"$ref": "#/definitions/Continent"
},
{
"$ref": "#/definitions/Canal"
},
{
"$ref": "#/definitions/Mountain"
},
{
"$ref": "#/definitions/Book"
},
{
"$ref": "#/definitions/MedicalOrganization"
},
{
"$ref": "#/definitions/Diet"
},
{
"$ref": "#/definitions/HobbyShop"
},
{
"$ref": "#/definitions/JobPosting"
},
{
"$ref": "#/definitions/CreativeWork"
},
{
"$ref": "#/definitions/TheaterEvent"
},
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/MedicalRiskFactor"
},
{
"$ref": "#/definitions/Person"
},
{
"$ref": "#/definitions/Mass"
},
{
"$ref": "#/definitions/BusStop"
},
{
"$ref": "#/definitions/Painting"
},
{
"$ref": "#/definitions/Quantity"
},
{
"$ref": "#/definitions/LymphaticVessel"
},
{
"$ref": "#/definitions/Library"
},
{
"$ref": "#/definitions/QualitativeValue"
},
{
"$ref": "#/definitions/ImagingTest"
},
{
"$ref": "#/definitions/DepartmentStore"
},
{
"$ref": "#/definitions/AutoDealer"
},
{
"$ref": "#/definitions/MedicalRiskScore"
},
{
"$ref": "#/definitions/Corporation"
},
{
"$ref": "#/definitions/Motel"
},
{
"$ref": "#/definitions/DeliveryChargeSpecification"
},
{
"$ref": "#/definitions/Brewery"
},
{
"$ref": "#/definitions/CollegeOrUniversity"
},
{
"$ref": "#/definitions/BedAndBreakfast"
},
{
"$ref": "#/definitions/Demand"
},
{
"$ref": "#/definitions/ChildrensEvent"
},
{
"$ref": "#/definitions/WebPageElement"
},
{
"$ref": "#/definitions/DoseSchedule"
},
{
"$ref": "#/definitions/ExerciseGym"
},
{
"$ref": "#/definitions/PhysicalTherapy"
},
{
"$ref": "#/definitions/CafeOrCoffeeShop"
},
{
"$ref": "#/definitions/VideoGallery"
},
{
"$ref": "#/definitions/PostalAddress"
},
{
"$ref": "#/definitions/PalliativeProcedure"
},
{
"$ref": "#/definitions/PaymentMethod"
},
{
"$ref": "#/definitions/TechArticle"
},
{
"$ref": "#/definitions/ProductModel"
},
{
"$ref": "#/definitions/Dataset"
},
{
"$ref": "#/definitions/BankOrCreditUnion"
},
{
"$ref": "#/definitions/VideoObject"
},
{
"$ref": "#/definitions/MiddleSchool"
},
{
"$ref": "#/definitions/MusicEvent"
},
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/EducationalOrganization"
},
{
"$ref": "#/definitions/TireShop"
},
{
"$ref": "#/definitions/ImageObject"
},
{
"$ref": "#/definitions/PostOffice"
},
{
"$ref": "#/definitions/PsychologicalTreatment"
},
{
"$ref": "#/definitions/Vein"
},
{
"$ref": "#/definitions/WebPage"
},
{
"$ref": "#/definitions/MedicalIndication"
},
{
"$ref": "#/definitions/LodgingBusiness"
},
{
"$ref": "#/definitions/DrugLegalStatus"
},
{
"$ref": "#/definitions/TelevisionStation"
},
{
"$ref": "#/definitions/Locksmith"
},
{
"$ref": "#/definitions/BrainStructure"
},
{
"$ref": "#/definitions/DiagnosticLab"
},
{
"$ref": "#/definitions/Event"
},
{
"$ref": "#/definitions/MedicalTherapy"
},
{
"$ref": "#/definitions/Museum"
},
{
"$ref": "#/definitions/NGO"
},
{
"$ref": "#/definitions/QuantitativeValue"
},
{
"$ref": "#/definitions/MedicalRiskCalculator"
},
{
"$ref": "#/definitions/AutoWash"
},
{
"$ref": "#/definitions/PawnShop"
},
{
"$ref": "#/definitions/VisualArtsEvent"
},
{
"$ref": "#/definitions/SuperficialAnatomy"
},
{
"$ref": "#/definitions/AggregateRating"
},
{
"$ref": "#/definitions/MedicalIntangible"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
},
{
"$ref": "#/definitions/FoodEstablishment"
},
{
"$ref": "#/definitions/MedicalGuideline"
},
{
"$ref": "#/definitions/GovernmentOrganization"
},
{
"$ref": "#/definitions/DrugStrength"
},
{
"$ref": "#/definitions/GeneralContractor"
},
{
"$ref": "#/definitions/MedicalSign"
},
{
"$ref": "#/definitions/ChildCare"
},
{
"$ref": "#/definitions/WebApplication"
},
{
"$ref": "#/definitions/HVACBusiness"
},
{
"$ref": "#/definitions/Electrician"
},
{
"$ref": "#/definitions/DrugCost"
},
{
"$ref": "#/definitions/Embassy"
},
{
"$ref": "#/definitions/HinduTemple"
},
{
"$ref": "#/definitions/ContactPage"
},
{
"$ref": "#/definitions/LiquorStore"
},
{
"$ref": "#/definitions/MensClothingStore"
},
{
"$ref": "#/definitions/MedicalGuidelineRecommendation"
},
{
"$ref": "#/definitions/Review"
},
{
"$ref": "#/definitions/MedicalCondition"
},
{
"$ref": "#/definitions/LocalBusiness"
},
{
"$ref": "#/definitions/BusinessEvent"
},
{
"$ref": "#/definitions/PerformingGroup"
},
{
"$ref": "#/definitions/MedicalTest"
},
{
"$ref": "#/definitions/HealthClub"
},
{
"$ref": "#/definitions/UserCheckins"
},
{
"$ref": "#/definitions/GroceryStore"
},
{
"$ref": "#/definitions/ApprovedIndication"
},
{
"$ref": "#/definitions/Preschool"
},
{
"$ref": "#/definitions/Language"
},
{
"$ref": "#/definitions/DryCleaningOrLaundry"
},
{
"$ref": "#/definitions/GardenStore"
},
{
"$ref": "#/definitions/DiagnosticProcedure"
},
{
"$ref": "#/definitions/Code"
},
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
},
{
"$ref": "#/definitions/CatholicChurch"
},
{
"$ref": "#/definitions/BusStation"
},
{
"$ref": "#/definitions/State"
},
{
"$ref": "#/definitions/TreatmentIndication"
},
{
"$ref": "#/definitions/PlaceOfWorship"
},
{
"$ref": "#/definitions/WarrantyScope"
},
{
"$ref": "#/definitions/Vessel"
},
{
"$ref": "#/definitions/ContactPoint"
},
{
"$ref": "#/definitions/DaySpa"
},
{
"$ref": "#/definitions/Movie"
},
{
"$ref": "#/definitions/TravelAgency"
},
{
"$ref": "#/definitions/MedicalDevice"
},
{
"$ref": "#/definitions/AdministrativeArea"
},
{
"$ref": "#/definitions/EmergencyService"
},
{
"$ref": "#/definitions/JewelryStore"
},
{
"$ref": "#/definitions/CheckoutPage"
},
{
"$ref": "#/definitions/DrugClass"
},
{
"$ref": "#/definitions/IndividualProduct"
},
{
"$ref": "#/definitions/LifestyleModification"
},
{
"$ref": "#/definitions/ItemPage"
},
{
"$ref": "#/definitions/Optician"
},
{
"$ref": "#/definitions/WPSideBar"
},
{
"$ref": "#/definitions/SportsTeam"
},
{
"$ref": "#/definitions/RoofingContractor"
},
{
"$ref": "#/definitions/Duration"
},
{
"$ref": "#/definitions/TypeAndQuantityNode"
},
{
"$ref": "#/definitions/SomeProducts"
},
{
"$ref": "#/definitions/ReportedDoseSchedule"
},
{
"$ref": "#/definitions/Bone"
},
{
"$ref": "#/definitions/DanceGroup"
},
{
"$ref": "#/definitions/Attorney"
},
{
"$ref": "#/definitions/PublicSwimmingPool"
},
{
"$ref": "#/definitions/PriceSpecification"
},
{
"$ref": "#/definitions/MedicalEntity"
},
{
"$ref": "#/definitions/TVSeason"
},
{
"$ref": "#/definitions/GatedResidenceCommunity"
},
{
"$ref": "#/definitions/MovieTheater"
},
{
"$ref": "#/definitions/LiteraryEvent"
},
{
"$ref": "#/definitions/MusicVenue"
},
{
"$ref": "#/definitions/AlignmentObject"
},
{
"$ref": "#/definitions/GeoShape"
},
{
"$ref": "#/definitions/PeopleAudience"
},
{
"$ref": "#/definitions/RVPark"
},
{
"$ref": "#/definitions/SkiResort"
},
{
"$ref": "#/definitions/FireStation"
},
{
"$ref": "#/definitions/ConvenienceStore"
},
{
"$ref": "#/definitions/Brand"
},
{
"$ref": "#/definitions/SoftwareApplication"
},
{
"$ref": "#/definitions/MaximumDoseSchedule"
},
{
"$ref": "#/definitions/SearchResultsPage"
},
{
"$ref": "#/definitions/ComputerStore"
},
{
"$ref": "#/definitions/MusicPlaylist"
},
{
"$ref": "#/definitions/SocialEvent"
},
{
"$ref": "#/definitions/PaymentChargeSpecification"
},
{
"$ref": "#/definitions/MedicalTestPanel"
},
{
"$ref": "#/definitions/Muscle"
},
{
"$ref": "#/definitions/FurnitureStore"
},
{
"$ref": "#/definitions/Rating"
},
{
"$ref": "#/definitions/UserBlocks"
},
{
"$ref": "#/definitions/DeliveryMethod"
},
{
"$ref": "#/definitions/OwnershipInfo"
},
{
"$ref": "#/definitions/MusicGroup"
},
{
"$ref": "#/definitions/WPHeader"
},
{
"$ref": "#/definitions/NailSalon"
},
{
"$ref": "#/definitions/Synagogue"
},
{
"$ref": "#/definitions/Courthouse"
},
{
"$ref": "#/definitions/Hospital"
},
{
"$ref": "#/definitions/TattooParlor"
},
{
"$ref": "#/definitions/Photograph"
},
{
"$ref": "#/definitions/Zoo"
},
{
"$ref": "#/definitions/DataDownload"
},
{
"$ref": "#/definitions/BloodTest"
},
{
"$ref": "#/definitions/RecyclingCenter"
},
{
"$ref": "#/definitions/AnatomicalSystem"
},
{
"$ref": "#/definitions/Park"
},
{
"$ref": "#/definitions/AutoRental"
},
{
"$ref": "#/definitions/BodyOfWater"
},
{
"$ref": "#/definitions/NewsArticle"
},
{
"$ref": "#/definitions/ComedyEvent"
},
{
"$ref": "#/definitions/MusicRecording"
},
{
"$ref": "#/definitions/DataCatalog"
},
{
"$ref": "#/definitions/DefenceEstablishment"
},
{
"$ref": "#/definitions/WholesaleStore"
},
{
"$ref": "#/definitions/AutoBodyShop"
},
{
"$ref": "#/definitions/CollectionPage"
},
{
"$ref": "#/definitions/TouristAttraction"
},
{
"$ref": "#/definitions/DanceEvent"
},
{
"$ref": "#/definitions/PoliceStation"
},
{
"$ref": "#/definitions/UserPlays"
},
{
"$ref": "#/definitions/ShoppingCenter"
},
{
"$ref": "#/definitions/Specialty"
},
{
"$ref": "#/definitions/VeterinaryCare"
},
{
"$ref": "#/definitions/MedicalRiskEstimator"
},
{
"$ref": "#/definitions/AdultEntertainment"
},
{
"$ref": "#/definitions/Dentist"
},
{
"$ref": "#/definitions/WarrantyPromise"
},
{
"$ref": "#/definitions/ImageGallery"
},
{
"$ref": "#/definitions/SiteNavigationElement"
},
{
"$ref": "#/definitions/Casino"
},
{
"$ref": "#/definitions/UserDownloads"
},
{
"$ref": "#/definitions/MobileApplication"
},
{
"$ref": "#/definitions/Sculpture"
},
{
"$ref": "#/definitions/ArtGallery"
},
{
"$ref": "#/definitions/InsuranceAgency"
},
{
"$ref": "#/definitions/LakeBodyOfWater"
},
{
"$ref": "#/definitions/RecommendedDoseSchedule"
},
{
"$ref": "#/definitions/HomeGoodsStore"
},
{
"$ref": "#/definitions/Church"
},
{
"$ref": "#/definitions/FastFoodRestaurant"
},
{
"$ref": "#/definitions/City"
},
{
"$ref": "#/definitions/GasStation"
},
{
"$ref": "#/definitions/UserPageVisits"
},
{
"$ref": "#/definitions/LegislativeBuilding"
},
{
"$ref": "#/definitions/ToyStore"
},
{
"$ref": "#/definitions/PhysicalActivity"
},
{
"$ref": "#/definitions/HighSchool"
},
{
"$ref": "#/definitions/Beach"
},
{
"$ref": "#/definitions/Product"
},
{
"$ref": "#/definitions/BuddhistTemple"
},
{
"$ref": "#/definitions/RealEstateAgent"
},
{
"$ref": "#/definitions/UserTweets"
},
{
"$ref": "#/definitions/RiverBodyOfWater"
},
{
"$ref": "#/definitions/TherapeuticProcedure"
},
{
"$ref": "#/definitions/BowlingAlley"
},
{
"$ref": "#/definitions/TheaterGroup"
},
{
"$ref": "#/definitions/Distance"
},
{
"$ref": "#/definitions/SportingGoodsStore"
},
{
"$ref": "#/definitions/Residence"
},
{
"$ref": "#/definitions/Airport"
},
{
"$ref": "#/definitions/ElectronicsStore"
},
{
"$ref": "#/definitions/MusicStore"
},
{
"$ref": "#/definitions/Winery"
},
{
"$ref": "#/definitions/MotorcycleRepair"
},
{
"$ref": "#/definitions/LandmarksOrHistoricalBuildings"
},
{
"$ref": "#/definitions/OutletStore"
},
{
"$ref": "#/definitions/ExercisePlan"
},
{
"$ref": "#/definitions/Florist"
},
{
"$ref": "#/definitions/Table"
},
{
"$ref": "#/definitions/MusicVideoObject"
},
{
"$ref": "#/definitions/Playground"
},
{
"$ref": "#/definitions/OceanBodyOfWater"
},
{
"$ref": "#/definitions/AutomatedTeller"
},
{
"$ref": "#/definitions/Offer"
},
{
"$ref": "#/definitions/AboutPage"
},
{
"$ref": "#/definitions/WPFooter"
},
{
"$ref": "#/definitions/SportsActivityLocation"
},
{
"$ref": "#/definitions/SelfStorage"
},
{
"$ref": "#/definitions/Aquarium"
},
{
"$ref": "#/definitions/Notary"
},
{
"$ref": "#/definitions/FinancialService"
},
{
"$ref": "#/definitions/AudioObject"
},
{
"$ref": "#/definitions/TouristInformationCenter"
},
{
"$ref": "#/definitions/Restaurant"
},
{
"$ref": "#/definitions/RadiationTherapy"
},
{
"$ref": "#/definitions/ProfilePage"
},
{
"$ref": "#/definitions/BeautySalon"
},
{
"$ref": "#/definitions/Drug"
},
{
"$ref": "#/definitions/Bakery"
},
{
"$ref": "#/definitions/Landform"
},
{
"$ref": "#/definitions/Volcano"
},
{
"$ref": "#/definitions/MedicalClinic"
},
{
"$ref": "#/definitions/CreditCard"
},
{
"$ref": "#/definitions/MedicalGuidelineContraindication"
},
{
"$ref": "#/definitions/ClothingStore"
},
{
"$ref": "#/definitions/FoodEvent"
},
{
"$ref": "#/definitions/HairSalon"
},
{
"$ref": "#/definitions/PerformingArtsTheater"
},
{
"$ref": "#/definitions/Mosque"
},
{
"$ref": "#/definitions/Pharmacy"
},
{
"$ref": "#/definitions/DietarySupplement"
},
{
"$ref": "#/definitions/PetStore"
},
{
"$ref": "#/definitions/EmploymentAgency"
},
{
"$ref": "#/definitions/GolfCourse"
},
{
"$ref": "#/definitions/PathologyTest"
},
{
"$ref": "#/definitions/MedicalTrial"
},
{
"$ref": "#/definitions/ParentAudience"
},
{
"$ref": "#/definitions/Class"
},
{
"$ref": "#/definitions/School"
},
{
"$ref": "#/definitions/UserInteraction"
},
{
"$ref": "#/definitions/OfficeEquipmentStore"
},
{
"$ref": "#/definitions/AutoRepair"
},
{
"$ref": "#/definitions/Thing"
},
{
"$ref": "#/definitions/TennisComplex"
},
{
"$ref": "#/definitions/Place"
},
{
"$ref": "#/definitions/Property"
},
{
"$ref": "#/definitions/Comment"
},
{
"$ref": "#/definitions/Nerve"
},
{
"$ref": "#/definitions/AutoPartsStore"
},
{
"$ref": "#/definitions/MotorcycleDealer"
},
{
"$ref": "#/definitions/MedicalCode"
},
{
"$ref": "#/definitions/ShoeStore"
},
{
"$ref": "#/definitions/AnimalShelter"
},
{
"$ref": "#/definitions/TVSeries"
},
{
"$ref": "#/definitions/Pond"
},
{
"$ref": "#/definitions/Hostel"
},
{
"$ref": "#/definitions/BookStore"
},
{
"$ref": "#/definitions/EducationEvent"
},
{
"$ref": "#/definitions/Store"
},
{
"$ref": "#/definitions/Hotel"
},
{
"$ref": "#/definitions/InternetCafe"
},
{
"$ref": "#/definitions/MedicalConditionStage"
},
{
"$ref": "#/definitions/GovernmentOffice"
},
{
"$ref": "#/definitions/UserPlusOnes"
},
{
"$ref": "#/definitions/EducationalAudience"
},
{
"$ref": "#/definitions/MedicalSymptom"
},
{
"$ref": "#/definitions/MobilePhoneStore"
},
{
"$ref": "#/definitions/MedicalWebPage"
},
{
"$ref": "#/definitions/MedicalEnumeration"
},
{
"$ref": "#/definitions/MedicalObservationalStudy"
},
{
"$ref": "#/definitions/Cemetery"
},
{
"$ref": "#/definitions/Blog"
},
{
"$ref": "#/definitions/GovernmentBuilding"
},
{
"$ref": "#/definitions/InfectiousDisease"
},
{
"$ref": "#/definitions/SportsEvent"
},
{
"$ref": "#/definitions/Map"
},
{
"$ref": "#/definitions/AccountingService"
},
{
"$ref": "#/definitions/SubwayStation"
},
{
"$ref": "#/definitions/ScholarlyArticle"
},
{
"$ref": "#/definitions/CityHall"
},
{
"$ref": "#/definitions/Artery"
},
{
"$ref": "#/definitions/NutritionInformation"
},
{
"$ref": "#/definitions/Country"
},
{
"$ref": "#/definitions/RadioStation"
},
{
"$ref": "#/definitions/MusicAlbum"
},
{
"$ref": "#/definitions/ItemList"
},
{
"$ref": "#/definitions/ParcelService"
},
{
"$ref": "#/definitions/TaxiStand"
},
{
"$ref": "#/definitions/MedicalScholarlyArticle"
},
{
"$ref": "#/definitions/Intangible"
},
{
"$ref": "#/definitions/UserLikes"
},
{
"$ref": "#/definitions/AnatomicalStructure"
}
]
},
{
"required": [
"id"
]
}
]
}
],
"additionalItems": false,
"type": "array"
}
}
}
This file has been truncated, but you can view the full file.
{
"definitions": {
"MedicalSignOrSymptom": {
"title": "Medical Sign or Symptom",
"description": "Any indication of the existence of a medical condition or disease.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MedicalSignOrSymptom"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"code": {
"items": {
"$ref": "#/definitions/MedicalCode"
},
"additionalItems": false,
"type": "array",
"description": "A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.",
"title": "Code"
},
"description": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A short description of the item.",
"title": "Description"
},
"url": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "URL of the item.",
"title": "URL"
},
"image": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "URL of an image of the item.",
"title": "Image"
},
"guideline": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/MedicalGuideline"
},
{
"$ref": "#/definitions/MedicalGuidelineContraindication"
},
{
"$ref": "#/definitions/MedicalGuidelineRecommendation"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A medical guideline related to this entity.",
"title": "Guideline"
},
"relevantSpecialty": {
"items": {
"oneOf": [
{
"enum": [
"http://schema.org/Anesthesia",
"http://schema.org/Cardiovascular",
"http://schema.org/CommunityHealth",
"http://schema.org/Dentistry",
"http://schema.org/Dermatologic",
"http://schema.org/DietNutrition",
"http://schema.org/Emergency",
"http://schema.org/Endocrine",
"http://schema.org/Gastroenterologic",
"http://schema.org/Genetic",
"http://schema.org/Geriatric",
"http://schema.org/Gynecologic",
"http://schema.org/Hematologic",
"http://schema.org/Infectious",
"http://schema.org/LaboratoryScience",
"http://schema.org/Midwifery",
"http://schema.org/Musculoskeletal",
"http://schema.org/Neurologic",
"http://schema.org/Nursing",
"http://schema.org/Obstetric",
"http://schema.org/OccupationalTherapy",
"http://schema.org/Oncologic",
"http://schema.org/Optometic",
"http://schema.org/Otolaryngologic",
"http://schema.org/Pathology",
"http://schema.org/Pediatric",
"http://schema.org/PharmacySpecialty",
"http://schema.org/Physiotherapy",
"http://schema.org/PlasticSurgery",
"http://schema.org/Podiatric",
"http://schema.org/PrimaryCare",
"http://schema.org/Psychiatric",
"http://schema.org/PublicHealth",
"http://schema.org/Pulmonary",
"http://schema.org/Radiograpy",
"http://schema.org/Renal",
"http://schema.org/RespiratoryTherapy",
"http://schema.org/Rheumatologic",
"http://schema.org/SpeechPathology",
"http://schema.org/Surgical",
"http://schema.org/Toxicologic",
"http://schema.org/Urologic"
]
},
{
"$ref": "#/definitions/MedicalSpecialty"
}
]
},
"additionalItems": false,
"type": "array",
"description": "If applicable, a medical specialty in which this entity is relevant.",
"title": "Relevant Specialty"
},
"possibleTreatment": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/MedicalTherapy"
},
{
"$ref": "#/definitions/DietarySupplement"
},
{
"$ref": "#/definitions/Drug"
},
{
"$ref": "#/definitions/DrugClass"
},
{
"$ref": "#/definitions/LifestyleModification"
},
{
"$ref": "#/definitions/Diet"
},
{
"$ref": "#/definitions/PhysicalActivity"
},
{
"$ref": "#/definitions/ExercisePlan"
},
{
"$ref": "#/definitions/PalliativeProcedure"
},
{
"$ref": "#/definitions/PhysicalTherapy"
},
{
"$ref": "#/definitions/PsychologicalTreatment"
},
{
"$ref": "#/definitions/RadiationTherapy"
},
{
"$ref": "#/definitions/TherapeuticProcedure"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A possible treatment to address this condition, sign or symptom.",
"title": "Possible Treatment"
},
"recognizingAuthority": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Corporation"
},
{
"$ref": "#/definitions/EducationalOrganization"
},
{
"$ref": "#/definitions/CollegeOrUniversity"
},
{
"$ref": "#/definitions/ElementarySchool"
},
{
"$ref": "#/definitions/HighSchool"
},
{
"$ref": "#/definitions/MiddleSchool"
},
{
"$ref": "#/definitions/Preschool"
},
{
"$ref": "#/definitions/School"
},
{
"$ref": "#/definitions/GovernmentOrganization"
},
{
"$ref": "#/definitions/LocalBusiness"
},
{
"$ref": "#/definitions/AnimalShelter"
},
{
"$ref": "#/definitions/AutomotiveBusiness"
},
{
"$ref": "#/definitions/AutoBodyShop"
},
{
"$ref": "#/definitions/AutoDealer"
},
{
"$ref": "#/definitions/AutoPartsStore"
},
{
"$ref": "#/definitions/AutoRental"
},
{
"$ref": "#/definitions/AutoRepair"
},
{
"$ref": "#/definitions/AutoWash"
},
{
"$ref": "#/definitions/GasStation"
},
{
"$ref": "#/definitions/MotorcycleDealer"
},
{
"$ref": "#/definitions/MotorcycleRepair"
},
{
"$ref": "#/definitions/ChildCare"
},
{
"$ref": "#/definitions/DryCleaningOrLaundry"
},
{
"$ref": "#/definitions/EmergencyService"
},
{
"$ref": "#/definitions/FireStation"
},
{
"$ref": "#/definitions/Hospital"
},
{
"$ref": "#/definitions/PoliceStation"
},
{
"$ref": "#/definitions/EmploymentAgency"
},
{
"$ref": "#/definitions/EntertainmentBusiness"
},
{
"$ref": "#/definitions/AdultEntertainment"
},
{
"$ref": "#/definitions/AmusementPark"
},
{
"$ref": "#/definitions/ArtGallery"
},
{
"$ref": "#/definitions/Casino"
},
{
"$ref": "#/definitions/ComedyClub"
},
{
"$ref": "#/definitions/MovieTheater"
},
{
"$ref": "#/definitions/NightClub"
},
{
"$ref": "#/definitions/FinancialService"
},
{
"$ref": "#/definitions/AccountingService"
},
{
"$ref": "#/definitions/AutomatedTeller"
},
{
"$ref": "#/definitions/BankOrCreditUnion"
},
{
"$ref": "#/definitions/InsuranceAgency"
},
{
"$ref": "#/definitions/FoodEstablishment"
},
{
"$ref": "#/definitions/Bakery"
},
{
"$ref": "#/definitions/BarOrPub"
},
{
"$ref": "#/definitions/Brewery"
},
{
"$ref": "#/definitions/CafeOrCoffeeShop"
},
{
"$ref": "#/definitions/FastFoodRestaurant"
},
{
"$ref": "#/definitions/IceCreamShop"
},
{
"$ref": "#/definitions/Restaurant"
},
{
"$ref": "#/definitions/Winery"
},
{
"$ref": "#/definitions/GovernmentOffice"
},
{
"$ref": "#/definitions/PostOffice"
},
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
},
{
"$ref": "#/definitions/BeautySalon"
},
{
"$ref": "#/definitions/DaySpa"
},
{
"$ref": "#/definitions/HairSalon"
},
{
"$ref": "#/definitions/HealthClub"
},
{
"$ref": "#/definitions/NailSalon"
},
{
"$ref": "#/definitions/TattooParlor"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
},
{
"$ref": "#/definitions/Electrician"
},
{
"$ref": "#/definitions/GeneralContractor"
},
{
"$ref": "#/definitions/HVACBusiness"
},
{
"$ref": "#/definitions/HousePainter"
},
{
"$ref": "#/definitions/Locksmith"
},
{
"$ref": "#/definitions/MovingCompany"
},
{
"$ref": "#/definitions/Plumber"
},
{
"$ref": "#/definitions/RoofingContractor"
},
{
"$ref": "#/definitions/InternetCafe"
},
{
"$ref": "#/definitions/Library"
},
{
"$ref": "#/definitions/LodgingBusiness"
},
{
"$ref": "#/definitions/BedAndBreakfast"
},
{
"$ref": "#/definitions/Hostel"
},
{
"$ref": "#/definitions/Hotel"
},
{
"$ref": "#/definitions/Motel"
},
{
"$ref": "#/definitions/MedicalOrganization"
},
{
"$ref": "#/definitions/Dentist"
},
{
"$ref": "#/definitions/DiagnosticLab"
},
{
"$ref": "#/definitions/MedicalClinic"
},
{
"$ref": "#/definitions/Optician"
},
{
"$ref": "#/definitions/Pharmacy"
},
{
"$ref": "#/definitions/Physician"
},
{
"$ref": "#/definitions/VeterinaryCare"
},
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/Attorney"
},
{
"$ref": "#/definitions/Notary"
},
{
"$ref": "#/definitions/RadioStation"
},
{
"$ref": "#/definitions/RealEstateAgent"
},
{
"$ref": "#/definitions/RecyclingCenter"
},
{
"$ref": "#/definitions/SelfStorage"
},
{
"$ref": "#/definitions/ShoppingCenter"
},
{
"$ref": "#/definitions/SportsActivityLocation"
},
{
"$ref": "#/definitions/BowlingAlley"
},
{
"$ref": "#/definitions/ExerciseGym"
},
{
"$ref": "#/definitions/GolfCourse"
},
{
"$ref": "#/definitions/PublicSwimmingPool"
},
{
"$ref": "#/definitions/SkiResort"
},
{
"$ref": "#/definitions/SportsClub"
},
{
"$ref": "#/definitions/StadiumOrArena"
},
{
"$ref": "#/definitions/TennisComplex"
},
{
"$ref": "#/definitions/Store"
},
{
"$ref": "#/definitions/BikeStore"
},
{
"$ref": "#/definitions/BookStore"
},
{
"$ref": "#/definitions/ClothingStore"
},
{
"$ref": "#/definitions/ComputerStore"
},
{
"$ref": "#/definitions/ConvenienceStore"
},
{
"$ref": "#/definitions/DepartmentStore"
},
{
"$ref": "#/definitions/ElectronicsStore"
},
{
"$ref": "#/definitions/Florist"
},
{
"$ref": "#/definitions/FurnitureStore"
},
{
"$ref": "#/definitions/GardenStore"
},
{
"$ref": "#/definitions/GroceryStore"
},
{
"$ref": "#/definitions/HardwareStore"
},
{
"$ref": "#/definitions/HobbyShop"
},
{
"$ref": "#/definitions/HomeGoodsStore"
},
{
"$ref": "#/definitions/JewelryStore"
},
{
"$ref": "#/definitions/LiquorStore"
},
{
"$ref": "#/definitions/MensClothingStore"
},
{
"$ref": "#/definitions/MobilePhoneStore"
},
{
"$ref": "#/definitions/MovieRentalStore"
},
{
"$ref": "#/definitions/MusicStore"
},
{
"$ref": "#/definitions/OfficeEquipmentStore"
},
{
"$ref": "#/definitions/OutletStore"
},
{
"$ref": "#/definitions/PawnShop"
},
{
"$ref": "#/definitions/PetStore"
},
{
"$ref": "#/definitions/ShoeStore"
},
{
"$ref": "#/definitions/SportingGoodsStore"
},
{
"$ref": "#/definitions/TireShop"
},
{
"$ref": "#/definitions/ToyStore"
},
{
"$ref": "#/definitions/WholesaleStore"
},
{
"$ref": "#/definitions/TelevisionStation"
},
{
"$ref": "#/definitions/TouristInformationCenter"
},
{
"$ref": "#/definitions/TravelAgency"
},
{
"$ref": "#/definitions/NGO"
},
{
"$ref": "#/definitions/PerformingGroup"
},
{
"$ref": "#/definitions/DanceGroup"
},
{
"$ref": "#/definitions/MusicGroup"
},
{
"$ref": "#/definitions/TheaterGroup"
},
{
"$ref": "#/definitions/SportsTeam"
}
]
},
"additionalItems": false,
"type": "array",
"description": "If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.",
"title": "Recognizing Authority"
},
"medicineSystem": {
"items": {
"oneOf": [
{
"enum": [
"http://schema.org/Ayurvedic",
"http://schema.org/Chiropractic",
"http://schema.org/Homeopathic",
"http://schema.org/Osteopathic",
"http://schema.org/TraditionalChinese",
"http://schema.org/WesternConventional"
]
},
{
"$ref": "#/definitions/MedicineSystem"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc.",
"title": "Medicine System"
},
"additionalType": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.",
"title": "Additional Type"
},
"alternateName": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Any alternate name for this medical entity.",
"title": "Alternate Name"
},
"cause": {
"items": {
"$ref": "#/definitions/MedicalCause"
},
"additionalItems": false,
"type": "array",
"description": "An underlying cause. More specifically, one of the causative agent(s) that are most directly responsible for the pathophysiologic process that eventually results in the occurrence.",
"title": "Cause"
},
"study": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/MedicalStudy"
},
{
"$ref": "#/definitions/MedicalObservationalStudy"
},
{
"$ref": "#/definitions/MedicalTrial"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A medical study or trial related to this entity.",
"title": "Study"
},
"name": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The name of the item.",
"title": "Name"
}
}
}
}
}
]
},
"DateTime": {
"title": "Date Time",
"type": "string",
"description": "A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).",
"format": "date-time"
},
"MovieRentalStore": {
"title": "Movie Rental Store",
"description": "A movie rental store.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/MovieRentalStore"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"openingHoursSpecification": {
"items": {
"$ref": "#/definitions/OpeningHoursSpecification"
},
"additionalItems": false,
"type": "array",
"description": "The opening hours of a certain place.",
"title": "Opening Hours Specification"
},
"founder": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A person who founded this organization.",
"title": "Founder"
},
"photo": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/ImageObject"
},
{
"$ref": "#/definitions/Photograph"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A photograph of this place.",
"title": "Photo"
},
"image": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "URL of an image of the item.",
"title": "Image"
},
"foundingDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The date that this organization was founded.",
"title": "Founding Date"
},
"interactionCount": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A count of a specific user interactions with this item\u2014for example, 20 UserLikes, 5 UserComments, or 300 UserDownloads. The user interaction type should be one of the sub types of UserInteraction.",
"title": "Interaction Count"
},
"faxNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The fax number.",
"title": "Fax Number"
},
"aggregateRating": {
"items": {
"$ref": "#/definitions/AggregateRating"
},
"additionalItems": false,
"type": "array",
"description": "The overall rating, based on a collection of reviews or ratings, of the item.",
"title": "Aggregate Rating"
},
"additionalType": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.",
"title": "Additional Type"
},
"currenciesAccepted": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The currency accepted (in ISO 4217 currency format).",
"title": "Currencies Accepted"
},
"logo": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/URL"
},
{
"$ref": "#/definitions/ImageObject"
}
]
},
"additionalItems": false,
"type": "array",
"description": "URL of an image for the logo of the item.",
"title": "Logo"
},
"event": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Event"
},
{
"$ref": "#/definitions/BusinessEvent"
},
{
"$ref": "#/definitions/ChildrensEvent"
},
{
"$ref": "#/definitions/ComedyEvent"
},
{
"$ref": "#/definitions/DanceEvent"
},
{
"$ref": "#/definitions/EducationEvent"
},
{
"$ref": "#/definitions/Festival"
},
{
"$ref": "#/definitions/FoodEvent"
},
{
"$ref": "#/definitions/LiteraryEvent"
},
{
"$ref": "#/definitions/MusicEvent"
},
{
"$ref": "#/definitions/SaleEvent"
},
{
"$ref": "#/definitions/SocialEvent"
},
{
"$ref": "#/definitions/SportsEvent"
},
{
"$ref": "#/definitions/TheaterEvent"
},
{
"$ref": "#/definitions/UserInteraction"
},
{
"$ref": "#/definitions/UserBlocks"
},
{
"$ref": "#/definitions/UserCheckins"
},
{
"$ref": "#/definitions/UserComments"
},
{
"$ref": "#/definitions/UserDownloads"
},
{
"$ref": "#/definitions/UserLikes"
},
{
"$ref": "#/definitions/UserPageVisits"
},
{
"$ref": "#/definitions/UserPlays"
},
{
"$ref": "#/definitions/UserPlusOnes"
},
{
"$ref": "#/definitions/UserTweets"
},
{
"$ref": "#/definitions/VisualArtsEvent"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Upcoming or past event associated with this place or organization.",
"title": "Event"
},
"isicV4": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.",
"title": "Isic V4"
},
"review": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "A review of the item.",
"title": "Review"
},
"taxID": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.",
"title": "Tax ID"
},
"member": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Corporation"
},
{
"$ref": "#/definitions/EducationalOrganization"
},
{
"$ref": "#/definitions/CollegeOrUniversity"
},
{
"$ref": "#/definitions/ElementarySchool"
},
{
"$ref": "#/definitions/HighSchool"
},
{
"$ref": "#/definitions/MiddleSchool"
},
{
"$ref": "#/definitions/Preschool"
},
{
"$ref": "#/definitions/School"
},
{
"$ref": "#/definitions/GovernmentOrganization"
},
{
"$ref": "#/definitions/LocalBusiness"
},
{
"$ref": "#/definitions/AnimalShelter"
},
{
"$ref": "#/definitions/AutomotiveBusiness"
},
{
"$ref": "#/definitions/AutoBodyShop"
},
{
"$ref": "#/definitions/AutoDealer"
},
{
"$ref": "#/definitions/AutoPartsStore"
},
{
"$ref": "#/definitions/AutoRental"
},
{
"$ref": "#/definitions/AutoRepair"
},
{
"$ref": "#/definitions/AutoWash"
},
{
"$ref": "#/definitions/GasStation"
},
{
"$ref": "#/definitions/MotorcycleDealer"
},
{
"$ref": "#/definitions/MotorcycleRepair"
},
{
"$ref": "#/definitions/ChildCare"
},
{
"$ref": "#/definitions/DryCleaningOrLaundry"
},
{
"$ref": "#/definitions/EmergencyService"
},
{
"$ref": "#/definitions/FireStation"
},
{
"$ref": "#/definitions/Hospital"
},
{
"$ref": "#/definitions/PoliceStation"
},
{
"$ref": "#/definitions/EmploymentAgency"
},
{
"$ref": "#/definitions/EntertainmentBusiness"
},
{
"$ref": "#/definitions/AdultEntertainment"
},
{
"$ref": "#/definitions/AmusementPark"
},
{
"$ref": "#/definitions/ArtGallery"
},
{
"$ref": "#/definitions/Casino"
},
{
"$ref": "#/definitions/ComedyClub"
},
{
"$ref": "#/definitions/MovieTheater"
},
{
"$ref": "#/definitions/NightClub"
},
{
"$ref": "#/definitions/FinancialService"
},
{
"$ref": "#/definitions/AccountingService"
},
{
"$ref": "#/definitions/AutomatedTeller"
},
{
"$ref": "#/definitions/BankOrCreditUnion"
},
{
"$ref": "#/definitions/InsuranceAgency"
},
{
"$ref": "#/definitions/FoodEstablishment"
},
{
"$ref": "#/definitions/Bakery"
},
{
"$ref": "#/definitions/BarOrPub"
},
{
"$ref": "#/definitions/Brewery"
},
{
"$ref": "#/definitions/CafeOrCoffeeShop"
},
{
"$ref": "#/definitions/FastFoodRestaurant"
},
{
"$ref": "#/definitions/IceCreamShop"
},
{
"$ref": "#/definitions/Restaurant"
},
{
"$ref": "#/definitions/Winery"
},
{
"$ref": "#/definitions/GovernmentOffice"
},
{
"$ref": "#/definitions/PostOffice"
},
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
},
{
"$ref": "#/definitions/BeautySalon"
},
{
"$ref": "#/definitions/DaySpa"
},
{
"$ref": "#/definitions/HairSalon"
},
{
"$ref": "#/definitions/HealthClub"
},
{
"$ref": "#/definitions/NailSalon"
},
{
"$ref": "#/definitions/TattooParlor"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
},
{
"$ref": "#/definitions/Electrician"
},
{
"$ref": "#/definitions/GeneralContractor"
},
{
"$ref": "#/definitions/HVACBusiness"
},
{
"$ref": "#/definitions/HousePainter"
},
{
"$ref": "#/definitions/Locksmith"
},
{
"$ref": "#/definitions/MovingCompany"
},
{
"$ref": "#/definitions/Plumber"
},
{
"$ref": "#/definitions/RoofingContractor"
},
{
"$ref": "#/definitions/InternetCafe"
},
{
"$ref": "#/definitions/Library"
},
{
"$ref": "#/definitions/LodgingBusiness"
},
{
"$ref": "#/definitions/BedAndBreakfast"
},
{
"$ref": "#/definitions/Hostel"
},
{
"$ref": "#/definitions/Hotel"
},
{
"$ref": "#/definitions/Motel"
},
{
"$ref": "#/definitions/MedicalOrganization"
},
{
"$ref": "#/definitions/Dentist"
},
{
"$ref": "#/definitions/DiagnosticLab"
},
{
"$ref": "#/definitions/MedicalClinic"
},
{
"$ref": "#/definitions/Optician"
},
{
"$ref": "#/definitions/Pharmacy"
},
{
"$ref": "#/definitions/Physician"
},
{
"$ref": "#/definitions/VeterinaryCare"
},
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/Attorney"
},
{
"$ref": "#/definitions/Notary"
},
{
"$ref": "#/definitions/RadioStation"
},
{
"$ref": "#/definitions/RealEstateAgent"
},
{
"$ref": "#/definitions/RecyclingCenter"
},
{
"$ref": "#/definitions/SelfStorage"
},
{
"$ref": "#/definitions/ShoppingCenter"
},
{
"$ref": "#/definitions/SportsActivityLocation"
},
{
"$ref": "#/definitions/BowlingAlley"
},
{
"$ref": "#/definitions/ExerciseGym"
},
{
"$ref": "#/definitions/GolfCourse"
},
{
"$ref": "#/definitions/PublicSwimmingPool"
},
{
"$ref": "#/definitions/SkiResort"
},
{
"$ref": "#/definitions/SportsClub"
},
{
"$ref": "#/definitions/StadiumOrArena"
},
{
"$ref": "#/definitions/TennisComplex"
},
{
"$ref": "#/definitions/Store"
},
{
"$ref": "#/definitions/BikeStore"
},
{
"$ref": "#/definitions/BookStore"
},
{
"$ref": "#/definitions/ClothingStore"
},
{
"$ref": "#/definitions/ComputerStore"
},
{
"$ref": "#/definitions/ConvenienceStore"
},
{
"$ref": "#/definitions/DepartmentStore"
},
{
"$ref": "#/definitions/ElectronicsStore"
},
{
"$ref": "#/definitions/Florist"
},
{
"$ref": "#/definitions/FurnitureStore"
},
{
"$ref": "#/definitions/GardenStore"
},
{
"$ref": "#/definitions/GroceryStore"
},
{
"$ref": "#/definitions/HardwareStore"
},
{
"$ref": "#/definitions/HobbyShop"
},
{
"$ref": "#/definitions/HomeGoodsStore"
},
{
"$ref": "#/definitions/JewelryStore"
},
{
"$ref": "#/definitions/LiquorStore"
},
{
"$ref": "#/definitions/MensClothingStore"
},
{
"$ref": "#/definitions/MobilePhoneStore"
},
{
"$ref": "#/definitions/MovieRentalStore"
},
{
"$ref": "#/definitions/MusicStore"
},
{
"$ref": "#/definitions/OfficeEquipmentStore"
},
{
"$ref": "#/definitions/OutletStore"
},
{
"$ref": "#/definitions/PawnShop"
},
{
"$ref": "#/definitions/PetStore"
},
{
"$ref": "#/definitions/ShoeStore"
},
{
"$ref": "#/definitions/SportingGoodsStore"
},
{
"$ref": "#/definitions/TireShop"
},
{
"$ref": "#/definitions/ToyStore"
},
{
"$ref": "#/definitions/WholesaleStore"
},
{
"$ref": "#/definitions/TelevisionStation"
},
{
"$ref": "#/definitions/TouristInformationCenter"
},
{
"$ref": "#/definitions/TravelAgency"
},
{
"$ref": "#/definitions/NGO"
},
{
"$ref": "#/definitions/PerformingGroup"
},
{
"$ref": "#/definitions/DanceGroup"
},
{
"$ref": "#/definitions/MusicGroup"
},
{
"$ref": "#/definitions/TheaterGroup"
},
{
"$ref": "#/definitions/SportsTeam"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A member of this organization.",
"title": "Member"
},
"maps": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "A URL to a map of the place (legacy spelling; see singular form, map).",
"title": "Maps"
},
"branchOf": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Corporation"
},
{
"$ref": "#/definitions/EducationalOrganization"
},
{
"$ref": "#/definitions/CollegeOrUniversity"
},
{
"$ref": "#/definitions/ElementarySchool"
},
{
"$ref": "#/definitions/HighSchool"
},
{
"$ref": "#/definitions/MiddleSchool"
},
{
"$ref": "#/definitions/Preschool"
},
{
"$ref": "#/definitions/School"
},
{
"$ref": "#/definitions/GovernmentOrganization"
},
{
"$ref": "#/definitions/LocalBusiness"
},
{
"$ref": "#/definitions/AnimalShelter"
},
{
"$ref": "#/definitions/AutomotiveBusiness"
},
{
"$ref": "#/definitions/AutoBodyShop"
},
{
"$ref": "#/definitions/AutoDealer"
},
{
"$ref": "#/definitions/AutoPartsStore"
},
{
"$ref": "#/definitions/AutoRental"
},
{
"$ref": "#/definitions/AutoRepair"
},
{
"$ref": "#/definitions/AutoWash"
},
{
"$ref": "#/definitions/GasStation"
},
{
"$ref": "#/definitions/MotorcycleDealer"
},
{
"$ref": "#/definitions/MotorcycleRepair"
},
{
"$ref": "#/definitions/ChildCare"
},
{
"$ref": "#/definitions/DryCleaningOrLaundry"
},
{
"$ref": "#/definitions/EmergencyService"
},
{
"$ref": "#/definitions/FireStation"
},
{
"$ref": "#/definitions/Hospital"
},
{
"$ref": "#/definitions/PoliceStation"
},
{
"$ref": "#/definitions/EmploymentAgency"
},
{
"$ref": "#/definitions/EntertainmentBusiness"
},
{
"$ref": "#/definitions/AdultEntertainment"
},
{
"$ref": "#/definitions/AmusementPark"
},
{
"$ref": "#/definitions/ArtGallery"
},
{
"$ref": "#/definitions/Casino"
},
{
"$ref": "#/definitions/ComedyClub"
},
{
"$ref": "#/definitions/MovieTheater"
},
{
"$ref": "#/definitions/NightClub"
},
{
"$ref": "#/definitions/FinancialService"
},
{
"$ref": "#/definitions/AccountingService"
},
{
"$ref": "#/definitions/AutomatedTeller"
},
{
"$ref": "#/definitions/BankOrCreditUnion"
},
{
"$ref": "#/definitions/InsuranceAgency"
},
{
"$ref": "#/definitions/FoodEstablishment"
},
{
"$ref": "#/definitions/Bakery"
},
{
"$ref": "#/definitions/BarOrPub"
},
{
"$ref": "#/definitions/Brewery"
},
{
"$ref": "#/definitions/CafeOrCoffeeShop"
},
{
"$ref": "#/definitions/FastFoodRestaurant"
},
{
"$ref": "#/definitions/IceCreamShop"
},
{
"$ref": "#/definitions/Restaurant"
},
{
"$ref": "#/definitions/Winery"
},
{
"$ref": "#/definitions/GovernmentOffice"
},
{
"$ref": "#/definitions/PostOffice"
},
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
},
{
"$ref": "#/definitions/BeautySalon"
},
{
"$ref": "#/definitions/DaySpa"
},
{
"$ref": "#/definitions/HairSalon"
},
{
"$ref": "#/definitions/HealthClub"
},
{
"$ref": "#/definitions/NailSalon"
},
{
"$ref": "#/definitions/TattooParlor"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
},
{
"$ref": "#/definitions/Electrician"
},
{
"$ref": "#/definitions/GeneralContractor"
},
{
"$ref": "#/definitions/HVACBusiness"
},
{
"$ref": "#/definitions/HousePainter"
},
{
"$ref": "#/definitions/Locksmith"
},
{
"$ref": "#/definitions/MovingCompany"
},
{
"$ref": "#/definitions/Plumber"
},
{
"$ref": "#/definitions/RoofingContractor"
},
{
"$ref": "#/definitions/InternetCafe"
},
{
"$ref": "#/definitions/Library"
},
{
"$ref": "#/definitions/LodgingBusiness"
},
{
"$ref": "#/definitions/BedAndBreakfast"
},
{
"$ref": "#/definitions/Hostel"
},
{
"$ref": "#/definitions/Hotel"
},
{
"$ref": "#/definitions/Motel"
},
{
"$ref": "#/definitions/MedicalOrganization"
},
{
"$ref": "#/definitions/Dentist"
},
{
"$ref": "#/definitions/DiagnosticLab"
},
{
"$ref": "#/definitions/MedicalClinic"
},
{
"$ref": "#/definitions/Optician"
},
{
"$ref": "#/definitions/Pharmacy"
},
{
"$ref": "#/definitions/Physician"
},
{
"$ref": "#/definitions/VeterinaryCare"
},
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/Attorney"
},
{
"$ref": "#/definitions/Notary"
},
{
"$ref": "#/definitions/RadioStation"
},
{
"$ref": "#/definitions/RealEstateAgent"
},
{
"$ref": "#/definitions/RecyclingCenter"
},
{
"$ref": "#/definitions/SelfStorage"
},
{
"$ref": "#/definitions/ShoppingCenter"
},
{
"$ref": "#/definitions/SportsActivityLocation"
},
{
"$ref": "#/definitions/BowlingAlley"
},
{
"$ref": "#/definitions/ExerciseGym"
},
{
"$ref": "#/definitions/GolfCourse"
},
{
"$ref": "#/definitions/PublicSwimmingPool"
},
{
"$ref": "#/definitions/SkiResort"
},
{
"$ref": "#/definitions/SportsClub"
},
{
"$ref": "#/definitions/StadiumOrArena"
},
{
"$ref": "#/definitions/TennisComplex"
},
{
"$ref": "#/definitions/Store"
},
{
"$ref": "#/definitions/BikeStore"
},
{
"$ref": "#/definitions/BookStore"
},
{
"$ref": "#/definitions/ClothingStore"
},
{
"$ref": "#/definitions/ComputerStore"
},
{
"$ref": "#/definitions/ConvenienceStore"
},
{
"$ref": "#/definitions/DepartmentStore"
},
{
"$ref": "#/definitions/ElectronicsStore"
},
{
"$ref": "#/definitions/Florist"
},
{
"$ref": "#/definitions/FurnitureStore"
},
{
"$ref": "#/definitions/GardenStore"
},
{
"$ref": "#/definitions/GroceryStore"
},
{
"$ref": "#/definitions/HardwareStore"
},
{
"$ref": "#/definitions/HobbyShop"
},
{
"$ref": "#/definitions/HomeGoodsStore"
},
{
"$ref": "#/definitions/JewelryStore"
},
{
"$ref": "#/definitions/LiquorStore"
},
{
"$ref": "#/definitions/MensClothingStore"
},
{
"$ref": "#/definitions/MobilePhoneStore"
},
{
"$ref": "#/definitions/MovieRentalStore"
},
{
"$ref": "#/definitions/MusicStore"
},
{
"$ref": "#/definitions/OfficeEquipmentStore"
},
{
"$ref": "#/definitions/OutletStore"
},
{
"$ref": "#/definitions/PawnShop"
},
{
"$ref": "#/definitions/PetStore"
},
{
"$ref": "#/definitions/ShoeStore"
},
{
"$ref": "#/definitions/SportingGoodsStore"
},
{
"$ref": "#/definitions/TireShop"
},
{
"$ref": "#/definitions/ToyStore"
},
{
"$ref": "#/definitions/WholesaleStore"
},
{
"$ref": "#/definitions/TelevisionStation"
},
{
"$ref": "#/definitions/TouristInformationCenter"
},
{
"$ref": "#/definitions/TravelAgency"
},
{
"$ref": "#/definitions/NGO"
},
{
"$ref": "#/definitions/PerformingGroup"
},
{
"$ref": "#/definitions/DanceGroup"
},
{
"$ref": "#/definitions/MusicGroup"
},
{
"$ref": "#/definitions/TheaterGroup"
},
{
"$ref": "#/definitions/SportsTeam"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The larger organization that this local business is a branch of, if any.",
"title": "Branch of"
},
"priceRange": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The price range of the business, for example $$$.",
"title": "Price Range"
},
"location": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/PostalAddress"
},
{
"$ref": "#/definitions/Place"
},
{
"$ref": "#/definitions/AdministrativeArea"
},
{
"$ref": "#/definitions/City"
},
{
"$ref": "#/definitions/Country"
},
{
"$ref": "#/definitions/State"
},
{
"$ref": "#/definitions/CivicStructure"
},
{
"$ref": "#/definitions/Airport"
},
{
"$ref": "#/definitions/Aquarium"
},
{
"$ref": "#/definitions/Beach"
},
{
"$ref": "#/definitions/BusStation"
},
{
"$ref": "#/definitions/BusStop"
},
{
"$ref": "#/definitions/Campground"
},
{
"$ref": "#/definitions/Cemetery"
},
{
"$ref": "#/definitions/Crematorium"
},
{
"$ref": "#/definitions/EventVenue"
},
{
"$ref": "#/definitions/FireStation"
},
{
"$ref": "#/definitions/GovernmentBuilding"
},
{
"$ref": "#/definitions/CityHall"
},
{
"$ref": "#/definitions/Courthouse"
},
{
"$ref": "#/definitions/DefenceEstablishment"
},
{
"$ref": "#/definitions/Embassy"
},
{
"$ref": "#/definitions/LegislativeBuilding"
},
{
"$ref": "#/definitions/Hospital"
},
{
"$ref": "#/definitions/MovieTheater"
},
{
"$ref": "#/definitions/Museum"
},
{
"$ref": "#/definitions/MusicVenue"
},
{
"$ref": "#/definitions/Park"
},
{
"$ref": "#/definitions/ParkingFacility"
},
{
"$ref": "#/definitions/PerformingArtsTheater"
},
{
"$ref": "#/definitions/PlaceOfWorship"
},
{
"$ref": "#/definitions/BuddhistTemple"
},
{
"$ref": "#/definitions/CatholicChurch"
},
{
"$ref": "#/definitions/Church"
},
{
"$ref": "#/definitions/HinduTemple"
},
{
"$ref": "#/definitions/Mosque"
},
{
"$ref": "#/definitions/Synagogue"
},
{
"$ref": "#/definitions/Playground"
},
{
"$ref": "#/definitions/PoliceStation"
},
{
"$ref": "#/definitions/RVPark"
},
{
"$ref": "#/definitions/StadiumOrArena"
},
{
"$ref": "#/definitions/SubwayStation"
},
{
"$ref": "#/definitions/TaxiStand"
},
{
"$ref": "#/definitions/TrainStation"
},
{
"$ref": "#/definitions/Zoo"
},
{
"$ref": "#/definitions/Landform"
},
{
"$ref": "#/definitions/BodyOfWater"
},
{
"$ref": "#/definitions/Canal"
},
{
"$ref": "#/definitions/LakeBodyOfWater"
},
{
"$ref": "#/definitions/OceanBodyOfWater"
},
{
"$ref": "#/definitions/Pond"
},
{
"$ref": "#/definitions/Reservoir"
},
{
"$ref": "#/definitions/RiverBodyOfWater"
},
{
"$ref": "#/definitions/SeaBodyOfWater"
},
{
"$ref": "#/definitions/Waterfall"
},
{
"$ref": "#/definitions/Continent"
},
{
"$ref": "#/definitions/Mountain"
},
{
"$ref": "#/definitions/Volcano"
},
{
"$ref": "#/definitions/LandmarksOrHistoricalBuildings"
},
{
"$ref": "#/definitions/LocalBusiness"
},
{
"$ref": "#/definitions/AnimalShelter"
},
{
"$ref": "#/definitions/AutomotiveBusiness"
},
{
"$ref": "#/definitions/AutoBodyShop"
},
{
"$ref": "#/definitions/AutoDealer"
},
{
"$ref": "#/definitions/AutoPartsStore"
},
{
"$ref": "#/definitions/AutoRental"
},
{
"$ref": "#/definitions/AutoRepair"
},
{
"$ref": "#/definitions/AutoWash"
},
{
"$ref": "#/definitions/GasStation"
},
{
"$ref": "#/definitions/MotorcycleDealer"
},
{
"$ref": "#/definitions/MotorcycleRepair"
},
{
"$ref": "#/definitions/ChildCare"
},
{
"$ref": "#/definitions/DryCleaningOrLaundry"
},
{
"$ref": "#/definitions/EmergencyService"
},
{
"$ref": "#/definitions/EmploymentAgency"
},
{
"$ref": "#/definitions/EntertainmentBusiness"
},
{
"$ref": "#/definitions/AdultEntertainment"
},
{
"$ref": "#/definitions/AmusementPark"
},
{
"$ref": "#/definitions/ArtGallery"
},
{
"$ref": "#/definitions/Casino"
},
{
"$ref": "#/definitions/ComedyClub"
},
{
"$ref": "#/definitions/NightClub"
},
{
"$ref": "#/definitions/FinancialService"
},
{
"$ref": "#/definitions/AccountingService"
},
{
"$ref": "#/definitions/AutomatedTeller"
},
{
"$ref": "#/definitions/BankOrCreditUnion"
},
{
"$ref": "#/definitions/InsuranceAgency"
},
{
"$ref": "#/definitions/FoodEstablishment"
},
{
"$ref": "#/definitions/Bakery"
},
{
"$ref": "#/definitions/BarOrPub"
},
{
"$ref": "#/definitions/Brewery"
},
{
"$ref": "#/definitions/CafeOrCoffeeShop"
},
{
"$ref": "#/definitions/FastFoodRestaurant"
},
{
"$ref": "#/definitions/IceCreamShop"
},
{
"$ref": "#/definitions/Restaurant"
},
{
"$ref": "#/definitions/Winery"
},
{
"$ref": "#/definitions/GovernmentOffice"
},
{
"$ref": "#/definitions/PostOffice"
},
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
},
{
"$ref": "#/definitions/BeautySalon"
},
{
"$ref": "#/definitions/DaySpa"
},
{
"$ref": "#/definitions/HairSalon"
},
{
"$ref": "#/definitions/HealthClub"
},
{
"$ref": "#/definitions/NailSalon"
},
{
"$ref": "#/definitions/TattooParlor"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
},
{
"$ref": "#/definitions/Electrician"
},
{
"$ref": "#/definitions/GeneralContractor"
},
{
"$ref": "#/definitions/HVACBusiness"
},
{
"$ref": "#/definitions/HousePainter"
},
{
"$ref": "#/definitions/Locksmith"
},
{
"$ref": "#/definitions/MovingCompany"
},
{
"$ref": "#/definitions/Plumber"
},
{
"$ref": "#/definitions/RoofingContractor"
},
{
"$ref": "#/definitions/InternetCafe"
},
{
"$ref": "#/definitions/Library"
},
{
"$ref": "#/definitions/LodgingBusiness"
},
{
"$ref": "#/definitions/BedAndBreakfast"
},
{
"$ref": "#/definitions/Hostel"
},
{
"$ref": "#/definitions/Hotel"
},
{
"$ref": "#/definitions/Motel"
},
{
"$ref": "#/definitions/MedicalOrganization"
},
{
"$ref": "#/definitions/Dentist"
},
{
"$ref": "#/definitions/DiagnosticLab"
},
{
"$ref": "#/definitions/MedicalClinic"
},
{
"$ref": "#/definitions/Optician"
},
{
"$ref": "#/definitions/Pharmacy"
},
{
"$ref": "#/definitions/Physician"
},
{
"$ref": "#/definitions/VeterinaryCare"
},
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/Attorney"
},
{
"$ref": "#/definitions/Notary"
},
{
"$ref": "#/definitions/RadioStation"
},
{
"$ref": "#/definitions/RealEstateAgent"
},
{
"$ref": "#/definitions/RecyclingCenter"
},
{
"$ref": "#/definitions/SelfStorage"
},
{
"$ref": "#/definitions/ShoppingCenter"
},
{
"$ref": "#/definitions/SportsActivityLocation"
},
{
"$ref": "#/definitions/BowlingAlley"
},
{
"$ref": "#/definitions/ExerciseGym"
},
{
"$ref": "#/definitions/GolfCourse"
},
{
"$ref": "#/definitions/PublicSwimmingPool"
},
{
"$ref": "#/definitions/SkiResort"
},
{
"$ref": "#/definitions/SportsClub"
},
{
"$ref": "#/definitions/TennisComplex"
},
{
"$ref": "#/definitions/Store"
},
{
"$ref": "#/definitions/BikeStore"
},
{
"$ref": "#/definitions/BookStore"
},
{
"$ref": "#/definitions/ClothingStore"
},
{
"$ref": "#/definitions/ComputerStore"
},
{
"$ref": "#/definitions/ConvenienceStore"
},
{
"$ref": "#/definitions/DepartmentStore"
},
{
"$ref": "#/definitions/ElectronicsStore"
},
{
"$ref": "#/definitions/Florist"
},
{
"$ref": "#/definitions/FurnitureStore"
},
{
"$ref": "#/definitions/GardenStore"
},
{
"$ref": "#/definitions/GroceryStore"
},
{
"$ref": "#/definitions/HardwareStore"
},
{
"$ref": "#/definitions/HobbyShop"
},
{
"$ref": "#/definitions/HomeGoodsStore"
},
{
"$ref": "#/definitions/JewelryStore"
},
{
"$ref": "#/definitions/LiquorStore"
},
{
"$ref": "#/definitions/MensClothingStore"
},
{
"$ref": "#/definitions/MobilePhoneStore"
},
{
"$ref": "#/definitions/MovieRentalStore"
},
{
"$ref": "#/definitions/MusicStore"
},
{
"$ref": "#/definitions/OfficeEquipmentStore"
},
{
"$ref": "#/definitions/OutletStore"
},
{
"$ref": "#/definitions/PawnShop"
},
{
"$ref": "#/definitions/PetStore"
},
{
"$ref": "#/definitions/ShoeStore"
},
{
"$ref": "#/definitions/SportingGoodsStore"
},
{
"$ref": "#/definitions/TireShop"
},
{
"$ref": "#/definitions/ToyStore"
},
{
"$ref": "#/definitions/WholesaleStore"
},
{
"$ref": "#/definitions/TelevisionStation"
},
{
"$ref": "#/definitions/TouristInformationCenter"
},
{
"$ref": "#/definitions/TravelAgency"
},
{
"$ref": "#/definitions/Residence"
},
{
"$ref": "#/definitions/ApartmentComplex"
},
{
"$ref": "#/definitions/GatedResidenceCommunity"
},
{
"$ref": "#/definitions/SingleFamilyResidence"
},
{
"$ref": "#/definitions/TouristAttraction"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The location of the event or organization.",
"title": "Location"
},
"founders": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A person who founded this organization (legacy spelling; see singular form, founder).",
"title": "Founders"
},
"events": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Event"
},
{
"$ref": "#/definitions/BusinessEvent"
},
{
"$ref": "#/definitions/ChildrensEvent"
},
{
"$ref": "#/definitions/ComedyEvent"
},
{
"$ref": "#/definitions/DanceEvent"
},
{
"$ref": "#/definitions/EducationEvent"
},
{
"$ref": "#/definitions/Festival"
},
{
"$ref": "#/definitions/FoodEvent"
},
{
"$ref": "#/definitions/LiteraryEvent"
},
{
"$ref": "#/definitions/MusicEvent"
},
{
"$ref": "#/definitions/SaleEvent"
},
{
"$ref": "#/definitions/SocialEvent"
},
{
"$ref": "#/definitions/SportsEvent"
},
{
"$ref": "#/definitions/TheaterEvent"
},
{
"$ref": "#/definitions/UserInteraction"
},
{
"$ref": "#/definitions/UserBlocks"
},
{
"$ref": "#/definitions/UserCheckins"
},
{
"$ref": "#/definitions/UserComments"
},
{
"$ref": "#/definitions/UserDownloads"
},
{
"$ref": "#/definitions/UserLikes"
},
{
"$ref": "#/definitions/UserPageVisits"
},
{
"$ref": "#/definitions/UserPlays"
},
{
"$ref": "#/definitions/UserPlusOnes"
},
{
"$ref": "#/definitions/UserTweets"
},
{
"$ref": "#/definitions/VisualArtsEvent"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Upcoming or past events associated with this place or organization (legacy spelling; see singular form, event).",
"title": "Events"
},
"seeks": {
"items": {
"$ref": "#/definitions/Demand"
},
"additionalItems": false,
"type": "array",
"description": "A pointer to products or services sought by the organization or person (demand).",
"title": "Seeks"
},
"map": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "A URL to a map of the place.",
"title": "Map"
},
"description": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A short description of the item.",
"title": "Description"
},
"brand": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Corporation"
},
{
"$ref": "#/definitions/EducationalOrganization"
},
{
"$ref": "#/definitions/CollegeOrUniversity"
},
{
"$ref": "#/definitions/ElementarySchool"
},
{
"$ref": "#/definitions/HighSchool"
},
{
"$ref": "#/definitions/MiddleSchool"
},
{
"$ref": "#/definitions/Preschool"
},
{
"$ref": "#/definitions/School"
},
{
"$ref": "#/definitions/GovernmentOrganization"
},
{
"$ref": "#/definitions/LocalBusiness"
},
{
"$ref": "#/definitions/AnimalShelter"
},
{
"$ref": "#/definitions/AutomotiveBusiness"
},
{
"$ref": "#/definitions/AutoBodyShop"
},
{
"$ref": "#/definitions/AutoDealer"
},
{
"$ref": "#/definitions/AutoPartsStore"
},
{
"$ref": "#/definitions/AutoRental"
},
{
"$ref": "#/definitions/AutoRepair"
},
{
"$ref": "#/definitions/AutoWash"
},
{
"$ref": "#/definitions/GasStation"
},
{
"$ref": "#/definitions/MotorcycleDealer"
},
{
"$ref": "#/definitions/MotorcycleRepair"
},
{
"$ref": "#/definitions/ChildCare"
},
{
"$ref": "#/definitions/DryCleaningOrLaundry"
},
{
"$ref": "#/definitions/EmergencyService"
},
{
"$ref": "#/definitions/FireStation"
},
{
"$ref": "#/definitions/Hospital"
},
{
"$ref": "#/definitions/PoliceStation"
},
{
"$ref": "#/definitions/EmploymentAgency"
},
{
"$ref": "#/definitions/EntertainmentBusiness"
},
{
"$ref": "#/definitions/AdultEntertainment"
},
{
"$ref": "#/definitions/AmusementPark"
},
{
"$ref": "#/definitions/ArtGallery"
},
{
"$ref": "#/definitions/Casino"
},
{
"$ref": "#/definitions/ComedyClub"
},
{
"$ref": "#/definitions/MovieTheater"
},
{
"$ref": "#/definitions/NightClub"
},
{
"$ref": "#/definitions/FinancialService"
},
{
"$ref": "#/definitions/AccountingService"
},
{
"$ref": "#/definitions/AutomatedTeller"
},
{
"$ref": "#/definitions/BankOrCreditUnion"
},
{
"$ref": "#/definitions/InsuranceAgency"
},
{
"$ref": "#/definitions/FoodEstablishment"
},
{
"$ref": "#/definitions/Bakery"
},
{
"$ref": "#/definitions/BarOrPub"
},
{
"$ref": "#/definitions/Brewery"
},
{
"$ref": "#/definitions/CafeOrCoffeeShop"
},
{
"$ref": "#/definitions/FastFoodRestaurant"
},
{
"$ref": "#/definitions/IceCreamShop"
},
{
"$ref": "#/definitions/Restaurant"
},
{
"$ref": "#/definitions/Winery"
},
{
"$ref": "#/definitions/GovernmentOffice"
},
{
"$ref": "#/definitions/PostOffice"
},
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
},
{
"$ref": "#/definitions/BeautySalon"
},
{
"$ref": "#/definitions/DaySpa"
},
{
"$ref": "#/definitions/HairSalon"
},
{
"$ref": "#/definitions/HealthClub"
},
{
"$ref": "#/definitions/NailSalon"
},
{
"$ref": "#/definitions/TattooParlor"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
},
{
"$ref": "#/definitions/Electrician"
},
{
"$ref": "#/definitions/GeneralContractor"
},
{
"$ref": "#/definitions/HVACBusiness"
},
{
"$ref": "#/definitions/HousePainter"
},
{
"$ref": "#/definitions/Locksmith"
},
{
"$ref": "#/definitions/MovingCompany"
},
{
"$ref": "#/definitions/Plumber"
},
{
"$ref": "#/definitions/RoofingContractor"
},
{
"$ref": "#/definitions/InternetCafe"
},
{
"$ref": "#/definitions/Library"
},
{
"$ref": "#/definitions/LodgingBusiness"
},
{
"$ref": "#/definitions/BedAndBreakfast"
},
{
"$ref": "#/definitions/Hostel"
},
{
"$ref": "#/definitions/Hotel"
},
{
"$ref": "#/definitions/Motel"
},
{
"$ref": "#/definitions/MedicalOrganization"
},
{
"$ref": "#/definitions/Dentist"
},
{
"$ref": "#/definitions/DiagnosticLab"
},
{
"$ref": "#/definitions/MedicalClinic"
},
{
"$ref": "#/definitions/Optician"
},
{
"$ref": "#/definitions/Pharmacy"
},
{
"$ref": "#/definitions/Physician"
},
{
"$ref": "#/definitions/VeterinaryCare"
},
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/Attorney"
},
{
"$ref": "#/definitions/Notary"
},
{
"$ref": "#/definitions/RadioStation"
},
{
"$ref": "#/definitions/RealEstateAgent"
},
{
"$ref": "#/definitions/RecyclingCenter"
},
{
"$ref": "#/definitions/SelfStorage"
},
{
"$ref": "#/definitions/ShoppingCenter"
},
{
"$ref": "#/definitions/SportsActivityLocation"
},
{
"$ref": "#/definitions/BowlingAlley"
},
{
"$ref": "#/definitions/ExerciseGym"
},
{
"$ref": "#/definitions/GolfCourse"
},
{
"$ref": "#/definitions/PublicSwimmingPool"
},
{
"$ref": "#/definitions/SkiResort"
},
{
"$ref": "#/definitions/SportsClub"
},
{
"$ref": "#/definitions/StadiumOrArena"
},
{
"$ref": "#/definitions/TennisComplex"
},
{
"$ref": "#/definitions/Store"
},
{
"$ref": "#/definitions/BikeStore"
},
{
"$ref": "#/definitions/BookStore"
},
{
"$ref": "#/definitions/ClothingStore"
},
{
"$ref": "#/definitions/ComputerStore"
},
{
"$ref": "#/definitions/ConvenienceStore"
},
{
"$ref": "#/definitions/DepartmentStore"
},
{
"$ref": "#/definitions/ElectronicsStore"
},
{
"$ref": "#/definitions/Florist"
},
{
"$ref": "#/definitions/FurnitureStore"
},
{
"$ref": "#/definitions/GardenStore"
},
{
"$ref": "#/definitions/GroceryStore"
},
{
"$ref": "#/definitions/HardwareStore"
},
{
"$ref": "#/definitions/HobbyShop"
},
{
"$ref": "#/definitions/HomeGoodsStore"
},
{
"$ref": "#/definitions/JewelryStore"
},
{
"$ref": "#/definitions/LiquorStore"
},
{
"$ref": "#/definitions/MensClothingStore"
},
{
"$ref": "#/definitions/MobilePhoneStore"
},
{
"$ref": "#/definitions/MovieRentalStore"
},
{
"$ref": "#/definitions/MusicStore"
},
{
"$ref": "#/definitions/OfficeEquipmentStore"
},
{
"$ref": "#/definitions/OutletStore"
},
{
"$ref": "#/definitions/PawnShop"
},
{
"$ref": "#/definitions/PetStore"
},
{
"$ref": "#/definitions/ShoeStore"
},
{
"$ref": "#/definitions/SportingGoodsStore"
},
{
"$ref": "#/definitions/TireShop"
},
{
"$ref": "#/definitions/ToyStore"
},
{
"$ref": "#/definitions/WholesaleStore"
},
{
"$ref": "#/definitions/TelevisionStation"
},
{
"$ref": "#/definitions/TouristInformationCenter"
},
{
"$ref": "#/definitions/TravelAgency"
},
{
"$ref": "#/definitions/NGO"
},
{
"$ref": "#/definitions/PerformingGroup"
},
{
"$ref": "#/definitions/DanceGroup"
},
{
"$ref": "#/definitions/MusicGroup"
},
{
"$ref": "#/definitions/TheaterGroup"
},
{
"$ref": "#/definitions/SportsTeam"
},
{
"$ref": "#/definitions/Brand"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.",
"title": "Brand"
},
"legalName": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The official name of the organization, e.g. the registered company name.",
"title": "Legal Name"
},
"containedIn": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Place"
},
{
"$ref": "#/definitions/AdministrativeArea"
},
{
"$ref": "#/definitions/City"
},
{
"$ref": "#/definitions/Country"
},
{
"$ref": "#/definitions/State"
},
{
"$ref": "#/definitions/CivicStructure"
},
{
"$ref": "#/definitions/Airport"
},
{
"$ref": "#/definitions/Aquarium"
},
{
"$ref": "#/definitions/Beach"
},
{
"$ref": "#/definitions/BusStation"
},
{
"$ref": "#/definitions/BusStop"
},
{
"$ref": "#/definitions/Campground"
},
{
"$ref": "#/definitions/Cemetery"
},
{
"$ref": "#/definitions/Crematorium"
},
{
"$ref": "#/definitions/EventVenue"
},
{
"$ref": "#/definitions/FireStation"
},
{
"$ref": "#/definitions/GovernmentBuilding"
},
{
"$ref": "#/definitions/CityHall"
},
{
"$ref": "#/definitions/Courthouse"
},
{
"$ref": "#/definitions/DefenceEstablishment"
},
{
"$ref": "#/definitions/Embassy"
},
{
"$ref": "#/definitions/LegislativeBuilding"
},
{
"$ref": "#/definitions/Hospital"
},
{
"$ref": "#/definitions/MovieTheater"
},
{
"$ref": "#/definitions/Museum"
},
{
"$ref": "#/definitions/MusicVenue"
},
{
"$ref": "#/definitions/Park"
},
{
"$ref": "#/definitions/ParkingFacility"
},
{
"$ref": "#/definitions/PerformingArtsTheater"
},
{
"$ref": "#/definitions/PlaceOfWorship"
},
{
"$ref": "#/definitions/BuddhistTemple"
},
{
"$ref": "#/definitions/CatholicChurch"
},
{
"$ref": "#/definitions/Church"
},
{
"$ref": "#/definitions/HinduTemple"
},
{
"$ref": "#/definitions/Mosque"
},
{
"$ref": "#/definitions/Synagogue"
},
{
"$ref": "#/definitions/Playground"
},
{
"$ref": "#/definitions/PoliceStation"
},
{
"$ref": "#/definitions/RVPark"
},
{
"$ref": "#/definitions/StadiumOrArena"
},
{
"$ref": "#/definitions/SubwayStation"
},
{
"$ref": "#/definitions/TaxiStand"
},
{
"$ref": "#/definitions/TrainStation"
},
{
"$ref": "#/definitions/Zoo"
},
{
"$ref": "#/definitions/Landform"
},
{
"$ref": "#/definitions/BodyOfWater"
},
{
"$ref": "#/definitions/Canal"
},
{
"$ref": "#/definitions/LakeBodyOfWater"
},
{
"$ref": "#/definitions/OceanBodyOfWater"
},
{
"$ref": "#/definitions/Pond"
},
{
"$ref": "#/definitions/Reservoir"
},
{
"$ref": "#/definitions/RiverBodyOfWater"
},
{
"$ref": "#/definitions/SeaBodyOfWater"
},
{
"$ref": "#/definitions/Waterfall"
},
{
"$ref": "#/definitions/Continent"
},
{
"$ref": "#/definitions/Mountain"
},
{
"$ref": "#/definitions/Volcano"
},
{
"$ref": "#/definitions/LandmarksOrHistoricalBuildings"
},
{
"$ref": "#/definitions/LocalBusiness"
},
{
"$ref": "#/definitions/AnimalShelter"
},
{
"$ref": "#/definitions/AutomotiveBusiness"
},
{
"$ref": "#/definitions/AutoBodyShop"
},
{
"$ref": "#/definitions/AutoDealer"
},
{
"$ref": "#/definitions/AutoPartsStore"
},
{
"$ref": "#/definitions/AutoRental"
},
{
"$ref": "#/definitions/AutoRepair"
},
{
"$ref": "#/definitions/AutoWash"
},
{
"$ref": "#/definitions/GasStation"
},
{
"$ref": "#/definitions/MotorcycleDealer"
},
{
"$ref": "#/definitions/MotorcycleRepair"
},
{
"$ref": "#/definitions/ChildCare"
},
{
"$ref": "#/definitions/DryCleaningOrLaundry"
},
{
"$ref": "#/definitions/EmergencyService"
},
{
"$ref": "#/definitions/EmploymentAgency"
},
{
"$ref": "#/definitions/EntertainmentBusiness"
},
{
"$ref": "#/definitions/AdultEntertainment"
},
{
"$ref": "#/definitions/AmusementPark"
},
{
"$ref": "#/definitions/ArtGallery"
},
{
"$ref": "#/definitions/Casino"
},
{
"$ref": "#/definitions/ComedyClub"
},
{
"$ref": "#/definitions/NightClub"
},
{
"$ref": "#/definitions/FinancialService"
},
{
"$ref": "#/definitions/AccountingService"
},
{
"$ref": "#/definitions/AutomatedTeller"
},
{
"$ref": "#/definitions/BankOrCreditUnion"
},
{
"$ref": "#/definitions/InsuranceAgency"
},
{
"$ref": "#/definitions/FoodEstablishment"
},
{
"$ref": "#/definitions/Bakery"
},
{
"$ref": "#/definitions/BarOrPub"
},
{
"$ref": "#/definitions/Brewery"
},
{
"$ref": "#/definitions/CafeOrCoffeeShop"
},
{
"$ref": "#/definitions/FastFoodRestaurant"
},
{
"$ref": "#/definitions/IceCreamShop"
},
{
"$ref": "#/definitions/Restaurant"
},
{
"$ref": "#/definitions/Winery"
},
{
"$ref": "#/definitions/GovernmentOffice"
},
{
"$ref": "#/definitions/PostOffice"
},
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
},
{
"$ref": "#/definitions/BeautySalon"
},
{
"$ref": "#/definitions/DaySpa"
},
{
"$ref": "#/definitions/HairSalon"
},
{
"$ref": "#/definitions/HealthClub"
},
{
"$ref": "#/definitions/NailSalon"
},
{
"$ref": "#/definitions/TattooParlor"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
},
{
"$ref": "#/definitions/Electrician"
},
{
"$ref": "#/definitions/GeneralContractor"
},
{
"$ref": "#/definitions/HVACBusiness"
},
{
"$ref": "#/definitions/HousePainter"
},
{
"$ref": "#/definitions/Locksmith"
},
{
"$ref": "#/definitions/MovingCompany"
},
{
"$ref": "#/definitions/Plumber"
},
{
"$ref": "#/definitions/RoofingContractor"
},
{
"$ref": "#/definitions/InternetCafe"
},
{
"$ref": "#/definitions/Library"
},
{
"$ref": "#/definitions/LodgingBusiness"
},
{
"$ref": "#/definitions/BedAndBreakfast"
},
{
"$ref": "#/definitions/Hostel"
},
{
"$ref": "#/definitions/Hotel"
},
{
"$ref": "#/definitions/Motel"
},
{
"$ref": "#/definitions/MedicalOrganization"
},
{
"$ref": "#/definitions/Dentist"
},
{
"$ref": "#/definitions/DiagnosticLab"
},
{
"$ref": "#/definitions/MedicalClinic"
},
{
"$ref": "#/definitions/Optician"
},
{
"$ref": "#/definitions/Pharmacy"
},
{
"$ref": "#/definitions/Physician"
},
{
"$ref": "#/definitions/VeterinaryCare"
},
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/Attorney"
},
{
"$ref": "#/definitions/Notary"
},
{
"$ref": "#/definitions/RadioStation"
},
{
"$ref": "#/definitions/RealEstateAgent"
},
{
"$ref": "#/definitions/RecyclingCenter"
},
{
"$ref": "#/definitions/SelfStorage"
},
{
"$ref": "#/definitions/ShoppingCenter"
},
{
"$ref": "#/definitions/SportsActivityLocation"
},
{
"$ref": "#/definitions/BowlingAlley"
},
{
"$ref": "#/definitions/ExerciseGym"
},
{
"$ref": "#/definitions/GolfCourse"
},
{
"$ref": "#/definitions/PublicSwimmingPool"
},
{
"$ref": "#/definitions/SkiResort"
},
{
"$ref": "#/definitions/SportsClub"
},
{
"$ref": "#/definitions/TennisComplex"
},
{
"$ref": "#/definitions/Store"
},
{
"$ref": "#/definitions/BikeStore"
},
{
"$ref": "#/definitions/BookStore"
},
{
"$ref": "#/definitions/ClothingStore"
},
{
"$ref": "#/definitions/ComputerStore"
},
{
"$ref": "#/definitions/ConvenienceStore"
},
{
"$ref": "#/definitions/DepartmentStore"
},
{
"$ref": "#/definitions/ElectronicsStore"
},
{
"$ref": "#/definitions/Florist"
},
{
"$ref": "#/definitions/FurnitureStore"
},
{
"$ref": "#/definitions/GardenStore"
},
{
"$ref": "#/definitions/GroceryStore"
},
{
"$ref": "#/definitions/HardwareStore"
},
{
"$ref": "#/definitions/HobbyShop"
},
{
"$ref": "#/definitions/HomeGoodsStore"
},
{
"$ref": "#/definitions/JewelryStore"
},
{
"$ref": "#/definitions/LiquorStore"
},
{
"$ref": "#/definitions/MensClothingStore"
},
{
"$ref": "#/definitions/MobilePhoneStore"
},
{
"$ref": "#/definitions/MovieRentalStore"
},
{
"$ref": "#/definitions/MusicStore"
},
{
"$ref": "#/definitions/OfficeEquipmentStore"
},
{
"$ref": "#/definitions/OutletStore"
},
{
"$ref": "#/definitions/PawnShop"
},
{
"$ref": "#/definitions/PetStore"
},
{
"$ref": "#/definitions/ShoeStore"
},
{
"$ref": "#/definitions/SportingGoodsStore"
},
{
"$ref": "#/definitions/TireShop"
},
{
"$ref": "#/definitions/ToyStore"
},
{
"$ref": "#/definitions/WholesaleStore"
},
{
"$ref": "#/definitions/TelevisionStation"
},
{
"$ref": "#/definitions/TouristInformationCenter"
},
{
"$ref": "#/definitions/TravelAgency"
},
{
"$ref": "#/definitions/Residence"
},
{
"$ref": "#/definitions/ApartmentComplex"
},
{
"$ref": "#/definitions/GatedResidenceCommunity"
},
{
"$ref": "#/definitions/SingleFamilyResidence"
},
{
"$ref": "#/definitions/TouristAttraction"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The basic containment relation between places.",
"title": "Contained in"
},
"telephone": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The telephone number.",
"title": "Telephone"
},
"employee": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "Someone working for this organization.",
"title": "Employee"
},
"members": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Organization"
},
{
"$ref": "#/definitions/Corporation"
},
{
"$ref": "#/definitions/EducationalOrganization"
},
{
"$ref": "#/definitions/CollegeOrUniversity"
},
{
"$ref": "#/definitions/ElementarySchool"
},
{
"$ref": "#/definitions/HighSchool"
},
{
"$ref": "#/definitions/MiddleSchool"
},
{
"$ref": "#/definitions/Preschool"
},
{
"$ref": "#/definitions/School"
},
{
"$ref": "#/definitions/GovernmentOrganization"
},
{
"$ref": "#/definitions/LocalBusiness"
},
{
"$ref": "#/definitions/AnimalShelter"
},
{
"$ref": "#/definitions/AutomotiveBusiness"
},
{
"$ref": "#/definitions/AutoBodyShop"
},
{
"$ref": "#/definitions/AutoDealer"
},
{
"$ref": "#/definitions/AutoPartsStore"
},
{
"$ref": "#/definitions/AutoRental"
},
{
"$ref": "#/definitions/AutoRepair"
},
{
"$ref": "#/definitions/AutoWash"
},
{
"$ref": "#/definitions/GasStation"
},
{
"$ref": "#/definitions/MotorcycleDealer"
},
{
"$ref": "#/definitions/MotorcycleRepair"
},
{
"$ref": "#/definitions/ChildCare"
},
{
"$ref": "#/definitions/DryCleaningOrLaundry"
},
{
"$ref": "#/definitions/EmergencyService"
},
{
"$ref": "#/definitions/FireStation"
},
{
"$ref": "#/definitions/Hospital"
},
{
"$ref": "#/definitions/PoliceStation"
},
{
"$ref": "#/definitions/EmploymentAgency"
},
{
"$ref": "#/definitions/EntertainmentBusiness"
},
{
"$ref": "#/definitions/AdultEntertainment"
},
{
"$ref": "#/definitions/AmusementPark"
},
{
"$ref": "#/definitions/ArtGallery"
},
{
"$ref": "#/definitions/Casino"
},
{
"$ref": "#/definitions/ComedyClub"
},
{
"$ref": "#/definitions/MovieTheater"
},
{
"$ref": "#/definitions/NightClub"
},
{
"$ref": "#/definitions/FinancialService"
},
{
"$ref": "#/definitions/AccountingService"
},
{
"$ref": "#/definitions/AutomatedTeller"
},
{
"$ref": "#/definitions/BankOrCreditUnion"
},
{
"$ref": "#/definitions/InsuranceAgency"
},
{
"$ref": "#/definitions/FoodEstablishment"
},
{
"$ref": "#/definitions/Bakery"
},
{
"$ref": "#/definitions/BarOrPub"
},
{
"$ref": "#/definitions/Brewery"
},
{
"$ref": "#/definitions/CafeOrCoffeeShop"
},
{
"$ref": "#/definitions/FastFoodRestaurant"
},
{
"$ref": "#/definitions/IceCreamShop"
},
{
"$ref": "#/definitions/Restaurant"
},
{
"$ref": "#/definitions/Winery"
},
{
"$ref": "#/definitions/GovernmentOffice"
},
{
"$ref": "#/definitions/PostOffice"
},
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
},
{
"$ref": "#/definitions/BeautySalon"
},
{
"$ref": "#/definitions/DaySpa"
},
{
"$ref": "#/definitions/HairSalon"
},
{
"$ref": "#/definitions/HealthClub"
},
{
"$ref": "#/definitions/NailSalon"
},
{
"$ref": "#/definitions/TattooParlor"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
},
{
"$ref": "#/definitions/Electrician"
},
{
"$ref": "#/definitions/GeneralContractor"
},
{
"$ref": "#/definitions/HVACBusiness"
},
{
"$ref": "#/definitions/HousePainter"
},
{
"$ref": "#/definitions/Locksmith"
},
{
"$ref": "#/definitions/MovingCompany"
},
{
"$ref": "#/definitions/Plumber"
},
{
"$ref": "#/definitions/RoofingContractor"
},
{
"$ref": "#/definitions/InternetCafe"
},
{
"$ref": "#/definitions/Library"
},
{
"$ref": "#/definitions/LodgingBusiness"
},
{
"$ref": "#/definitions/BedAndBreakfast"
},
{
"$ref": "#/definitions/Hostel"
},
{
"$ref": "#/definitions/Hotel"
},
{
"$ref": "#/definitions/Motel"
},
{
"$ref": "#/definitions/MedicalOrganization"
},
{
"$ref": "#/definitions/Dentist"
},
{
"$ref": "#/definitions/DiagnosticLab"
},
{
"$ref": "#/definitions/MedicalClinic"
},
{
"$ref": "#/definitions/Optician"
},
{
"$ref": "#/definitions/Pharmacy"
},
{
"$ref": "#/definitions/Physician"
},
{
"$ref": "#/definitions/VeterinaryCare"
},
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/Attorney"
},
{
"$ref": "#/definitions/Notary"
},
{
"$ref": "#/definitions/RadioStation"
},
{
"$ref": "#/definitions/RealEstateAgent"
},
{
"$ref": "#/definitions/RecyclingCenter"
},
{
"$ref": "#/definitions/SelfStorage"
},
{
"$ref": "#/definitions/ShoppingCenter"
},
{
"$ref": "#/definitions/SportsActivityLocation"
},
{
"$ref": "#/definitions/BowlingAlley"
},
{
"$ref": "#/definitions/ExerciseGym"
},
{
"$ref": "#/definitions/GolfCourse"
},
{
"$ref": "#/definitions/PublicSwimmingPool"
},
{
"$ref": "#/definitions/SkiResort"
},
{
"$ref": "#/definitions/SportsClub"
},
{
"$ref": "#/definitions/StadiumOrArena"
},
{
"$ref": "#/definitions/TennisComplex"
},
{
"$ref": "#/definitions/Store"
},
{
"$ref": "#/definitions/BikeStore"
},
{
"$ref": "#/definitions/BookStore"
},
{
"$ref": "#/definitions/ClothingStore"
},
{
"$ref": "#/definitions/ComputerStore"
},
{
"$ref": "#/definitions/ConvenienceStore"
},
{
"$ref": "#/definitions/DepartmentStore"
},
{
"$ref": "#/definitions/ElectronicsStore"
},
{
"$ref": "#/definitions/Florist"
},
{
"$ref": "#/definitions/FurnitureStore"
},
{
"$ref": "#/definitions/GardenStore"
},
{
"$ref": "#/definitions/GroceryStore"
},
{
"$ref": "#/definitions/HardwareStore"
},
{
"$ref": "#/definitions/HobbyShop"
},
{
"$ref": "#/definitions/HomeGoodsStore"
},
{
"$ref": "#/definitions/JewelryStore"
},
{
"$ref": "#/definitions/LiquorStore"
},
{
"$ref": "#/definitions/MensClothingStore"
},
{
"$ref": "#/definitions/MobilePhoneStore"
},
{
"$ref": "#/definitions/MovieRentalStore"
},
{
"$ref": "#/definitions/MusicStore"
},
{
"$ref": "#/definitions/OfficeEquipmentStore"
},
{
"$ref": "#/definitions/OutletStore"
},
{
"$ref": "#/definitions/PawnShop"
},
{
"$ref": "#/definitions/PetStore"
},
{
"$ref": "#/definitions/ShoeStore"
},
{
"$ref": "#/definitions/SportingGoodsStore"
},
{
"$ref": "#/definitions/TireShop"
},
{
"$ref": "#/definitions/ToyStore"
},
{
"$ref": "#/definitions/WholesaleStore"
},
{
"$ref": "#/definitions/TelevisionStation"
},
{
"$ref": "#/definitions/TouristInformationCenter"
},
{
"$ref": "#/definitions/TravelAgency"
},
{
"$ref": "#/definitions/NGO"
},
{
"$ref": "#/definitions/PerformingGroup"
},
{
"$ref": "#/definitions/DanceGroup"
},
{
"$ref": "#/definitions/MusicGroup"
},
{
"$ref": "#/definitions/TheaterGroup"
},
{
"$ref": "#/definitions/SportsTeam"
},
{
"$ref": "#/definitions/Person"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A member of this organization (legacy spelling; see singular form, member).",
"title": "Members"
},
"address": {
"items": {
"$ref": "#/definitions/PostalAddress"
},
"additionalItems": false,
"type": "array",
"description": "Physical address of the item.",
"title": "Address"
},
"duns": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Dun & Bradstreet DUNS number for identifying an organization or business person.",
"title": "Duns"
},
"contactPoint": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/ContactPoint"
},
{
"$ref": "#/definitions/PostalAddress"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A contact point for a person or organization.",
"title": "Contact Point"
},
"geo": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/GeoCoordinates"
},
{
"$ref": "#/definitions/GeoShape"
}
]
},
"additionalItems": false,
"type": "array",
"description": "The geo coordinates of the place.",
"title": "Geo"
},
"makesOffer": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Offer"
},
{
"$ref": "#/definitions/AggregateOffer"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A pointer to products or services offered by the organization or person.",
"title": "Makes Offer"
},
"hasPOS": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Place"
},
{
"$ref": "#/definitions/AdministrativeArea"
},
{
"$ref": "#/definitions/City"
},
{
"$ref": "#/definitions/Country"
},
{
"$ref": "#/definitions/State"
},
{
"$ref": "#/definitions/CivicStructure"
},
{
"$ref": "#/definitions/Airport"
},
{
"$ref": "#/definitions/Aquarium"
},
{
"$ref": "#/definitions/Beach"
},
{
"$ref": "#/definitions/BusStation"
},
{
"$ref": "#/definitions/BusStop"
},
{
"$ref": "#/definitions/Campground"
},
{
"$ref": "#/definitions/Cemetery"
},
{
"$ref": "#/definitions/Crematorium"
},
{
"$ref": "#/definitions/EventVenue"
},
{
"$ref": "#/definitions/FireStation"
},
{
"$ref": "#/definitions/GovernmentBuilding"
},
{
"$ref": "#/definitions/CityHall"
},
{
"$ref": "#/definitions/Courthouse"
},
{
"$ref": "#/definitions/DefenceEstablishment"
},
{
"$ref": "#/definitions/Embassy"
},
{
"$ref": "#/definitions/LegislativeBuilding"
},
{
"$ref": "#/definitions/Hospital"
},
{
"$ref": "#/definitions/MovieTheater"
},
{
"$ref": "#/definitions/Museum"
},
{
"$ref": "#/definitions/MusicVenue"
},
{
"$ref": "#/definitions/Park"
},
{
"$ref": "#/definitions/ParkingFacility"
},
{
"$ref": "#/definitions/PerformingArtsTheater"
},
{
"$ref": "#/definitions/PlaceOfWorship"
},
{
"$ref": "#/definitions/BuddhistTemple"
},
{
"$ref": "#/definitions/CatholicChurch"
},
{
"$ref": "#/definitions/Church"
},
{
"$ref": "#/definitions/HinduTemple"
},
{
"$ref": "#/definitions/Mosque"
},
{
"$ref": "#/definitions/Synagogue"
},
{
"$ref": "#/definitions/Playground"
},
{
"$ref": "#/definitions/PoliceStation"
},
{
"$ref": "#/definitions/RVPark"
},
{
"$ref": "#/definitions/StadiumOrArena"
},
{
"$ref": "#/definitions/SubwayStation"
},
{
"$ref": "#/definitions/TaxiStand"
},
{
"$ref": "#/definitions/TrainStation"
},
{
"$ref": "#/definitions/Zoo"
},
{
"$ref": "#/definitions/Landform"
},
{
"$ref": "#/definitions/BodyOfWater"
},
{
"$ref": "#/definitions/Canal"
},
{
"$ref": "#/definitions/LakeBodyOfWater"
},
{
"$ref": "#/definitions/OceanBodyOfWater"
},
{
"$ref": "#/definitions/Pond"
},
{
"$ref": "#/definitions/Reservoir"
},
{
"$ref": "#/definitions/RiverBodyOfWater"
},
{
"$ref": "#/definitions/SeaBodyOfWater"
},
{
"$ref": "#/definitions/Waterfall"
},
{
"$ref": "#/definitions/Continent"
},
{
"$ref": "#/definitions/Mountain"
},
{
"$ref": "#/definitions/Volcano"
},
{
"$ref": "#/definitions/LandmarksOrHistoricalBuildings"
},
{
"$ref": "#/definitions/LocalBusiness"
},
{
"$ref": "#/definitions/AnimalShelter"
},
{
"$ref": "#/definitions/AutomotiveBusiness"
},
{
"$ref": "#/definitions/AutoBodyShop"
},
{
"$ref": "#/definitions/AutoDealer"
},
{
"$ref": "#/definitions/AutoPartsStore"
},
{
"$ref": "#/definitions/AutoRental"
},
{
"$ref": "#/definitions/AutoRepair"
},
{
"$ref": "#/definitions/AutoWash"
},
{
"$ref": "#/definitions/GasStation"
},
{
"$ref": "#/definitions/MotorcycleDealer"
},
{
"$ref": "#/definitions/MotorcycleRepair"
},
{
"$ref": "#/definitions/ChildCare"
},
{
"$ref": "#/definitions/DryCleaningOrLaundry"
},
{
"$ref": "#/definitions/EmergencyService"
},
{
"$ref": "#/definitions/EmploymentAgency"
},
{
"$ref": "#/definitions/EntertainmentBusiness"
},
{
"$ref": "#/definitions/AdultEntertainment"
},
{
"$ref": "#/definitions/AmusementPark"
},
{
"$ref": "#/definitions/ArtGallery"
},
{
"$ref": "#/definitions/Casino"
},
{
"$ref": "#/definitions/ComedyClub"
},
{
"$ref": "#/definitions/NightClub"
},
{
"$ref": "#/definitions/FinancialService"
},
{
"$ref": "#/definitions/AccountingService"
},
{
"$ref": "#/definitions/AutomatedTeller"
},
{
"$ref": "#/definitions/BankOrCreditUnion"
},
{
"$ref": "#/definitions/InsuranceAgency"
},
{
"$ref": "#/definitions/FoodEstablishment"
},
{
"$ref": "#/definitions/Bakery"
},
{
"$ref": "#/definitions/BarOrPub"
},
{
"$ref": "#/definitions/Brewery"
},
{
"$ref": "#/definitions/CafeOrCoffeeShop"
},
{
"$ref": "#/definitions/FastFoodRestaurant"
},
{
"$ref": "#/definitions/IceCreamShop"
},
{
"$ref": "#/definitions/Restaurant"
},
{
"$ref": "#/definitions/Winery"
},
{
"$ref": "#/definitions/GovernmentOffice"
},
{
"$ref": "#/definitions/PostOffice"
},
{
"$ref": "#/definitions/HealthAndBeautyBusiness"
},
{
"$ref": "#/definitions/BeautySalon"
},
{
"$ref": "#/definitions/DaySpa"
},
{
"$ref": "#/definitions/HairSalon"
},
{
"$ref": "#/definitions/HealthClub"
},
{
"$ref": "#/definitions/NailSalon"
},
{
"$ref": "#/definitions/TattooParlor"
},
{
"$ref": "#/definitions/HomeAndConstructionBusiness"
},
{
"$ref": "#/definitions/Electrician"
},
{
"$ref": "#/definitions/GeneralContractor"
},
{
"$ref": "#/definitions/HVACBusiness"
},
{
"$ref": "#/definitions/HousePainter"
},
{
"$ref": "#/definitions/Locksmith"
},
{
"$ref": "#/definitions/MovingCompany"
},
{
"$ref": "#/definitions/Plumber"
},
{
"$ref": "#/definitions/RoofingContractor"
},
{
"$ref": "#/definitions/InternetCafe"
},
{
"$ref": "#/definitions/Library"
},
{
"$ref": "#/definitions/LodgingBusiness"
},
{
"$ref": "#/definitions/BedAndBreakfast"
},
{
"$ref": "#/definitions/Hostel"
},
{
"$ref": "#/definitions/Hotel"
},
{
"$ref": "#/definitions/Motel"
},
{
"$ref": "#/definitions/MedicalOrganization"
},
{
"$ref": "#/definitions/Dentist"
},
{
"$ref": "#/definitions/DiagnosticLab"
},
{
"$ref": "#/definitions/MedicalClinic"
},
{
"$ref": "#/definitions/Optician"
},
{
"$ref": "#/definitions/Pharmacy"
},
{
"$ref": "#/definitions/Physician"
},
{
"$ref": "#/definitions/VeterinaryCare"
},
{
"$ref": "#/definitions/ProfessionalService"
},
{
"$ref": "#/definitions/Attorney"
},
{
"$ref": "#/definitions/Notary"
},
{
"$ref": "#/definitions/RadioStation"
},
{
"$ref": "#/definitions/RealEstateAgent"
},
{
"$ref": "#/definitions/RecyclingCenter"
},
{
"$ref": "#/definitions/SelfStorage"
},
{
"$ref": "#/definitions/ShoppingCenter"
},
{
"$ref": "#/definitions/SportsActivityLocation"
},
{
"$ref": "#/definitions/BowlingAlley"
},
{
"$ref": "#/definitions/ExerciseGym"
},
{
"$ref": "#/definitions/GolfCourse"
},
{
"$ref": "#/definitions/PublicSwimmingPool"
},
{
"$ref": "#/definitions/SkiResort"
},
{
"$ref": "#/definitions/SportsClub"
},
{
"$ref": "#/definitions/TennisComplex"
},
{
"$ref": "#/definitions/Store"
},
{
"$ref": "#/definitions/BikeStore"
},
{
"$ref": "#/definitions/BookStore"
},
{
"$ref": "#/definitions/ClothingStore"
},
{
"$ref": "#/definitions/ComputerStore"
},
{
"$ref": "#/definitions/ConvenienceStore"
},
{
"$ref": "#/definitions/DepartmentStore"
},
{
"$ref": "#/definitions/ElectronicsStore"
},
{
"$ref": "#/definitions/Florist"
},
{
"$ref": "#/definitions/FurnitureStore"
},
{
"$ref": "#/definitions/GardenStore"
},
{
"$ref": "#/definitions/GroceryStore"
},
{
"$ref": "#/definitions/HardwareStore"
},
{
"$ref": "#/definitions/HobbyShop"
},
{
"$ref": "#/definitions/HomeGoodsStore"
},
{
"$ref": "#/definitions/JewelryStore"
},
{
"$ref": "#/definitions/LiquorStore"
},
{
"$ref": "#/definitions/MensClothingStore"
},
{
"$ref": "#/definitions/MobilePhoneStore"
},
{
"$ref": "#/definitions/MovieRentalStore"
},
{
"$ref": "#/definitions/MusicStore"
},
{
"$ref": "#/definitions/OfficeEquipmentStore"
},
{
"$ref": "#/definitions/OutletStore"
},
{
"$ref": "#/definitions/PawnShop"
},
{
"$ref": "#/definitions/PetStore"
},
{
"$ref": "#/definitions/ShoeStore"
},
{
"$ref": "#/definitions/SportingGoodsStore"
},
{
"$ref": "#/definitions/TireShop"
},
{
"$ref": "#/definitions/ToyStore"
},
{
"$ref": "#/definitions/WholesaleStore"
},
{
"$ref": "#/definitions/TelevisionStation"
},
{
"$ref": "#/definitions/TouristInformationCenter"
},
{
"$ref": "#/definitions/TravelAgency"
},
{
"$ref": "#/definitions/Residence"
},
{
"$ref": "#/definitions/ApartmentComplex"
},
{
"$ref": "#/definitions/GatedResidenceCommunity"
},
{
"$ref": "#/definitions/SingleFamilyResidence"
},
{
"$ref": "#/definitions/TouristAttraction"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Points-of-Sales operated by the organization or person.",
"title": "Has POS"
},
"name": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The name of the item.",
"title": "Name"
},
"photos": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/ImageObject"
},
{
"$ref": "#/definitions/Photograph"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Photographs of this place (legacy spelling; see singular form, photo).",
"title": "Photos"
},
"url": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "URL of the item.",
"title": "URL"
},
"employees": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "People working for this organization. (legacy spelling; see singular form, employee)",
"title": "Employees"
},
"naics": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The North American Industry Classification System (NAICS) code for a particular organization or business person.",
"title": "Naics"
},
"email": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Email address.",
"title": "Email"
},
"reviews": {
"items": {
"$ref": "#/definitions/Review"
},
"additionalItems": false,
"type": "array",
"description": "Review of the item (legacy spelling; see singular form, review).",
"title": "Reviews"
},
"owns": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/OwnershipInfo"
},
{
"$ref": "#/definitions/Product"
},
{
"$ref": "#/definitions/IndividualProduct"
},
{
"$ref": "#/definitions/ProductModel"
},
{
"$ref": "#/definitions/SomeProducts"
}
]
},
"additionalItems": false,
"type": "array",
"description": "Products owned by the organization or person.",
"title": "Owns"
},
"openingHours": {
"items": {
"$ref": "#/definitions/Duration"
},
"additionalItems": false,
"type": "array",
"description": "The 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 '-'.- Days are specified using the following two-letter combinations: Mo, Tu, We, Th, Fr, Sa, Su.- Times are specified using 24:00 time. For example, 3pm is specified as 15:00. - Here is an example: <time itemprop=\"openingHours\" datetime=\"Tu,Th 16:00-20:00\">Tuesdays and Thursdays 4-8pm</time>. - If a business is open 7 days a week, then it can be specified as <time itemprop=\"openingHours\" datetime=\"Mo-Su\">Monday through Sunday, all day</time>.",
"title": "Opening Hours"
},
"paymentAccepted": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "Cash, credit card, etc.",
"title": "Payment Accepted"
},
"vatID": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The Value-added Tax ID of the organisation or person.",
"title": "Vat ID"
},
"contactPoints": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/ContactPoint"
},
{
"$ref": "#/definitions/PostalAddress"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A contact point for a person or organization (legacy spelling; see singular form, contactPoint).",
"title": "Contact Points"
},
"globalLocationNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"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.",
"title": "Global Location Number"
}
}
}
}
}
]
},
"EntertainmentBusiness": {
"title": "Entertainment Business",
"description": "A business providing entertainment.",
"allOf": [
{
"$ref": "#/definitions/microdata"
},
{
"properties": {
"type": {
"items": {
"enum": [
"http://schema.org/EntertainmentBusiness"
]
},
"additionalItems": false,
"type": "array"
},
"properties": {
"properties": {
"openingHoursSpecification": {
"items": {
"$ref": "#/definitions/OpeningHoursSpecification"
},
"additionalItems": false,
"type": "array",
"description": "The opening hours of a certain place.",
"title": "Opening Hours Specification"
},
"founder": {
"items": {
"$ref": "#/definitions/Person"
},
"additionalItems": false,
"type": "array",
"description": "A person who founded this organization.",
"title": "Founder"
},
"photo": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/ImageObject"
},
{
"$ref": "#/definitions/Photograph"
}
]
},
"additionalItems": false,
"type": "array",
"description": "A photograph of this place.",
"title": "Photo"
},
"image": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "URL of an image of the item.",
"title": "Image"
},
"foundingDate": {
"items": {
"$ref": "#/definitions/Date"
},
"additionalItems": false,
"type": "array",
"description": "The date that this organization was founded.",
"title": "Founding Date"
},
"interactionCount": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "A count of a specific user interactions with this item\u2014for example, 20 UserLikes, 5 UserComments, or 300 UserDownloads. The user interaction type should be one of the sub types of UserInteraction.",
"title": "Interaction Count"
},
"faxNumber": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The fax number.",
"title": "Fax Number"
},
"aggregateRating": {
"items": {
"$ref": "#/definitions/AggregateRating"
},
"additionalItems": false,
"type": "array",
"description": "The overall rating, based on a collection of reviews or ratings, of the item.",
"title": "Aggregate Rating"
},
"additionalType": {
"items": {
"$ref": "#/definitions/URL"
},
"additionalItems": false,
"type": "array",
"description": "An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.",
"title": "Additional Type"
},
"currenciesAccepted": {
"items": {
"$ref": "#/definitions/Text"
},
"additionalItems": false,
"type": "array",
"description": "The currency accepted (in ISO 4217 currency format).",
"title": "Currencies Accepted"
},
"logo": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/URL"
},
{
"$ref": "#/definitions/ImageObject"
}
]
},
"additionalItems": false,
"type": "array",
"description": "URL of an image for the logo of the item.",
"title": "Logo"
},
"event": {
"items": {
"oneOf": [
{
"$ref": "#/definitions/Event"
},
{
"$ref": "#/definitions/BusinessEvent"
},
{
"$ref": "#/definitions/ChildrensEvent"
},
{
"$ref": "#/definitions/ComedyEvent"
},
{
"$ref": "#/definitions/DanceEvent"
},
{
"$ref": "#/definitions/EducationEvent"
},
{
"$ref": "#/definitions/Festival"
},
{
"$ref": "#/definitions/FoodEvent"
},
{
"$ref": "#/definitions/LiteraryEvent"
},
{
"$ref": "#/definitions/MusicEvent"
},
{
"$ref": "#/definitions/SaleEvent"
},
{
"$ref": "#/definitions/SocialEvent"
},
{
"$ref": "#/definitions/SportsEvent"
},
{
"$ref": "#/definitions/TheaterEvent"
},
{
"$ref": "#/definitions/UserInteraction"
},
{
"$ref": "#/definitions/UserBlocks"
},
{
"$ref": "#/definitions/UserCheckins"
},
{
"$ref": "#/definitions/UserComments"
},
{
"$ref": "#/definitions/UserDownloads"
},
{
"$ref": "#/definitions/UserLikes"
},
{
"$ref": "#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment