@prefix schema: <http://schema.org/>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix dct: <http://purl.org/dc/terms/>.

<http://schema.rdfs.org/all> a owl:Ontology;
    dct:title "The schema.org terms in RDFS+OWL"@en;
    dct:description "This is a conversion of the terms defined at schema.org to RDFS and OWL."@en;
    foaf:page <http://schema.rdfs.org/>;
    rdfs:seeAlso <http://schema.org/>;
    rdfs:seeAlso <http://github.com/mhausenblas/schema-org-rdf>;
    dct:hasFormat <http://schema.rdfs.org/all.ttl>;
    dct:hasFormat <http://schema.rdfs.org/all.rdf>;
    dct:hasFormat <http://schema.rdfs.org/all.nt>;
    dct:hasFormat <http://schema.rdfs.org/all.json>;
    dct:hasFormat [
        dct:hasPart <http://schema.rdfs.org/all-classes.csv>;
        dct:hasPart <http://schema.rdfs.org/all-properties.csv>;
    ];
    dct:source <http://schema.org/>;
    dct:license <http://schema.org/docs/terms.html>;
    dct:valid "2013-05-22"^^xsd:date;
    .

schema:Thing a rdfs:Class;
    rdfs:label "Thing"@en;
    rdfs:comment "The most generic type of item."@en;
    rdfs:isDefinedBy <http://schema.org/Thing>;
    .
schema:Class a rdfs:Class;
    rdfs:label "Class"@en;
    rdfs:comment "A class, also often called a 'Type'; equivalent to rdfs:Class."@en;
    rdfs:subClassOf schema:Thing;
    rdfs:isDefinedBy <http://schema.org/Class>;
    .
schema:CreativeWork a rdfs:Class;
    rdfs:label "Creative Work"@en;
    rdfs:comment "The most generic kind of creative work, including books, movies, photographs, software programs, etc."@en;
    rdfs:subClassOf schema:Thing;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:Article a rdfs:Class;
    rdfs:label "Article"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Article>;
    .
schema:BlogPosting a rdfs:Class;
    rdfs:label "Blog Posting"@en;
    rdfs:comment "A blog post."@en;
    rdfs:subClassOf schema:Article;
    rdfs:isDefinedBy <http://schema.org/BlogPosting>;
    .
schema:NewsArticle a rdfs:Class;
    rdfs:label "News Article"@en;
    rdfs:comment "A news article"@en;
    rdfs:subClassOf schema:Article;
    rdfs:isDefinedBy <http://schema.org/NewsArticle>;
    .
schema:ScholarlyArticle a rdfs:Class;
    rdfs:label "Scholarly Article"@en;
    rdfs:comment "A scholarly article."@en;
    rdfs:subClassOf schema:Article;
    rdfs:isDefinedBy <http://schema.org/ScholarlyArticle>;
    .
schema:MedicalScholarlyArticle a rdfs:Class;
    rdfs:label "Medical Scholarly Article"@en;
    rdfs:comment "A scholarly article in the medical domain."@en;
    rdfs:subClassOf schema:ScholarlyArticle;
    rdfs:isDefinedBy <http://schema.org/MedicalScholarlyArticle>;
    .
schema:TechArticle a rdfs:Class;
    rdfs:label "Tech Article"@en;
    rdfs:comment "A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc."@en;
    rdfs:subClassOf schema:Article;
    rdfs:isDefinedBy <http://schema.org/TechArticle>;
    .
schema:APIReference a rdfs:Class;
    rdfs:label "API Reference"@en;
    rdfs:comment "Reference documentation for application programming interfaces (APIs)."@en;
    rdfs:subClassOf schema:TechArticle;
    rdfs:isDefinedBy <http://schema.org/APIReference>;
    .
schema:Blog a rdfs:Class;
    rdfs:label "Blog"@en;
    rdfs:comment "A blog"@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Blog>;
    .
schema:Book a rdfs:Class;
    rdfs:label "Book"@en;
    rdfs:comment "A book."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Book>;
    .
schema:Code a rdfs:Class;
    rdfs:label "Code"@en;
    rdfs:comment "Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Code>;
    .
schema:Comment a rdfs:Class;
    rdfs:label "Comment"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Comment>;
    .
schema:DataCatalog a rdfs:Class;
    rdfs:label "Data Catalog"@en;
    rdfs:comment "A collection of datasets."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/DataCatalog>;
    .
schema:Dataset a rdfs:Class;
    rdfs:label "Dataset"@en;
    rdfs:comment "A body of structured information describing some topic(s) of interest."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Dataset>;
    .
schema:Diet a rdfs:Class;
    rdfs:label "Diet"@en;
    rdfs:comment "A strategy of regulating the intake of food to achieve or maintain a specific health-related goal."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:subClassOf schema:LifestyleModification;
    rdfs:isDefinedBy <http://schema.org/Diet>;
    .
schema:ExercisePlan a rdfs:Class;
    rdfs:label "Exercise Plan"@en;
    rdfs:comment "Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:subClassOf schema:PhysicalActivity;
    rdfs:isDefinedBy <http://schema.org/ExercisePlan>;
    .
schema:ItemList a rdfs:Class;
    rdfs:label "Item List"@en;
    rdfs:comment "A list of items of any sort—for 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."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/ItemList>;
    .
schema:Map a rdfs:Class;
    rdfs:label "Map"@en;
    rdfs:comment "A map."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Map>;
    .
schema:MediaObject a rdfs:Class;
    rdfs:label "Media Object"@en;
    rdfs:comment "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)."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:AudioObject a rdfs:Class;
    rdfs:label "Audio Object"@en;
    rdfs:comment "An audio file."@en;
    rdfs:subClassOf schema:MediaObject;
    rdfs:isDefinedBy <http://schema.org/AudioObject>;
    .
schema:DataDownload a rdfs:Class;
    rdfs:label "Data Download"@en;
    rdfs:comment "A dataset in downloadable form."@en;
    rdfs:subClassOf schema:MediaObject;
    rdfs:isDefinedBy <http://schema.org/DataDownload>;
    .
schema:ImageObject a rdfs:Class;
    rdfs:label "Image Object"@en;
    rdfs:comment "An image file."@en;
    rdfs:subClassOf schema:MediaObject;
    rdfs:isDefinedBy <http://schema.org/ImageObject>;
    .
schema:MusicVideoObject a rdfs:Class;
    rdfs:label "Music Video Object"@en;
    rdfs:comment "A music video file."@en;
    rdfs:subClassOf schema:MediaObject;
    rdfs:isDefinedBy <http://schema.org/MusicVideoObject>;
    .
schema:VideoObject a rdfs:Class;
    rdfs:label "Video Object"@en;
    rdfs:comment "A video file."@en;
    rdfs:subClassOf schema:MediaObject;
    rdfs:isDefinedBy <http://schema.org/VideoObject>;
    .
schema:Movie a rdfs:Class;
    rdfs:label "Movie"@en;
    rdfs:comment "A movie."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Movie>;
    .
schema:MusicPlaylist a rdfs:Class;
    rdfs:label "Music Playlist"@en;
    rdfs:comment "A collection of music tracks in playlist form."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/MusicPlaylist>;
    .
schema:MusicAlbum a rdfs:Class;
    rdfs:label "Music Album"@en;
    rdfs:comment "A collection of music tracks."@en;
    rdfs:subClassOf schema:MusicPlaylist;
    rdfs:isDefinedBy <http://schema.org/MusicAlbum>;
    .
schema:MusicRecording a rdfs:Class;
    rdfs:label "Music Recording"@en;
    rdfs:comment "A music recording (track), usually a single song."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/MusicRecording>;
    .
schema:Painting a rdfs:Class;
    rdfs:label "Painting"@en;
    rdfs:comment "A painting."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Painting>;
    .
schema:Photograph a rdfs:Class;
    rdfs:label "Photograph"@en;
    rdfs:comment "A photograph."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Photograph>;
    .
schema:Recipe a rdfs:Class;
    rdfs:label "Recipe"@en;
    rdfs:comment "A recipe."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Recipe>;
    .
schema:Review a rdfs:Class;
    rdfs:label "Review"@en;
    rdfs:comment "A review of an item - for example, a restaurant, movie, or store."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Review>;
    .
schema:Sculpture a rdfs:Class;
    rdfs:label "Sculpture"@en;
    rdfs:comment "A piece of sculpture."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/Sculpture>;
    .
schema:SoftwareApplication a rdfs:Class;
    rdfs:label "Software Application"@en;
    rdfs:comment "A software application."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:MobileApplication a rdfs:Class;
    rdfs:label "Mobile Application"@en;
    rdfs:comment "A mobile software application."@en;
    rdfs:subClassOf schema:SoftwareApplication;
    rdfs:isDefinedBy <http://schema.org/MobileApplication>;
    .
schema:WebApplication a rdfs:Class;
    rdfs:label "Web Application"@en;
    rdfs:comment "Web applications."@en;
    rdfs:subClassOf schema:SoftwareApplication;
    rdfs:isDefinedBy <http://schema.org/WebApplication>;
    .
schema:TVEpisode a rdfs:Class;
    rdfs:label "TV Episode"@en;
    rdfs:comment "An episode of a TV series or season."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/TVEpisode>;
    .
schema:TVSeason a rdfs:Class;
    rdfs:label "TV Season"@en;
    rdfs:comment "A TV season."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/TVSeason>;
    .
schema:TVSeries a rdfs:Class;
    rdfs:label "TV Series"@en;
    rdfs:comment "A television series."@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:WebPage a rdfs:Class;
    rdfs:label "Web Page"@en;
    rdfs:comment "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"@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/WebPage>;
    .
schema:AboutPage a rdfs:Class;
    rdfs:label "About Page"@en;
    rdfs:comment "Web page type: About page."@en;
    rdfs:subClassOf schema:WebPage;
    rdfs:isDefinedBy <http://schema.org/AboutPage>;
    .
schema:CheckoutPage a rdfs:Class;
    rdfs:label "Checkout Page"@en;
    rdfs:comment "Web page type: Checkout page."@en;
    rdfs:subClassOf schema:WebPage;
    rdfs:isDefinedBy <http://schema.org/CheckoutPage>;
    .
schema:CollectionPage a rdfs:Class;
    rdfs:label "Collection Page"@en;
    rdfs:comment "Web page type: Collection page."@en;
    rdfs:subClassOf schema:WebPage;
    rdfs:isDefinedBy <http://schema.org/CollectionPage>;
    .
schema:ImageGallery a rdfs:Class;
    rdfs:label "Image Gallery"@en;
    rdfs:comment "Web page type: Image gallery page."@en;
    rdfs:subClassOf schema:CollectionPage;
    rdfs:isDefinedBy <http://schema.org/ImageGallery>;
    .
schema:VideoGallery a rdfs:Class;
    rdfs:label "Video Gallery"@en;
    rdfs:comment "Web page type: Video gallery page."@en;
    rdfs:subClassOf schema:CollectionPage;
    rdfs:isDefinedBy <http://schema.org/VideoGallery>;
    .
schema:ContactPage a rdfs:Class;
    rdfs:label "Contact Page"@en;
    rdfs:comment "Web page type: Contact page."@en;
    rdfs:subClassOf schema:WebPage;
    rdfs:isDefinedBy <http://schema.org/ContactPage>;
    .
schema:ItemPage a rdfs:Class;
    rdfs:label "Item Page"@en;
    rdfs:comment "A page devoted to a single item, such as a particular product or hotel."@en;
    rdfs:subClassOf schema:WebPage;
    rdfs:isDefinedBy <http://schema.org/ItemPage>;
    .
schema:MedicalWebPage a rdfs:Class;
    rdfs:label "Medical Web Page"@en;
    rdfs:comment "A web page that provides medical information."@en;
    rdfs:subClassOf schema:WebPage;
    rdfs:isDefinedBy <http://schema.org/MedicalWebPage>;
    .
schema:ProfilePage a rdfs:Class;
    rdfs:label "Profile Page"@en;
    rdfs:comment "Web page type: Profile page."@en;
    rdfs:subClassOf schema:WebPage;
    rdfs:isDefinedBy <http://schema.org/ProfilePage>;
    .
schema:SearchResultsPage a rdfs:Class;
    rdfs:label "Search Results Page"@en;
    rdfs:comment "Web page type: Search results page."@en;
    rdfs:subClassOf schema:WebPage;
    rdfs:isDefinedBy <http://schema.org/SearchResultsPage>;
    .
schema:WebPageElement a rdfs:Class;
    rdfs:label "Web Page Element"@en;
    rdfs:comment "A web page element, like a table or an image"@en;
    rdfs:subClassOf schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/WebPageElement>;
    .
schema:SiteNavigationElement a rdfs:Class;
    rdfs:label "Site Navigation Element"@en;
    rdfs:comment "A navigation element of the page."@en;
    rdfs:subClassOf schema:WebPageElement;
    rdfs:isDefinedBy <http://schema.org/SiteNavigationElement>;
    .
schema:Table a rdfs:Class;
    rdfs:label "Table"@en;
    rdfs:comment "A table on the page."@en;
    rdfs:subClassOf schema:WebPageElement;
    rdfs:isDefinedBy <http://schema.org/Table>;
    .
schema:WPAdBlock a rdfs:Class;
    rdfs:label "WP Ad Block"@en;
    rdfs:comment "An advertising section of the page."@en;
    rdfs:subClassOf schema:WebPageElement;
    rdfs:isDefinedBy <http://schema.org/WPAdBlock>;
    .
schema:WPFooter a rdfs:Class;
    rdfs:label "WP Footer"@en;
    rdfs:comment "The footer section of the page."@en;
    rdfs:subClassOf schema:WebPageElement;
    rdfs:isDefinedBy <http://schema.org/WPFooter>;
    .
schema:WPHeader a rdfs:Class;
    rdfs:label "WP Header"@en;
    rdfs:comment "The header section of the page."@en;
    rdfs:subClassOf schema:WebPageElement;
    rdfs:isDefinedBy <http://schema.org/WPHeader>;
    .
schema:WPSideBar a rdfs:Class;
    rdfs:label "WP Side Bar"@en;
    rdfs:comment "A sidebar section of the page."@en;
    rdfs:subClassOf schema:WebPageElement;
    rdfs:isDefinedBy <http://schema.org/WPSideBar>;
    .
schema:Event a rdfs:Class;
    rdfs:label "Event"@en;
    rdfs:comment "An event happening at a certain time at a certain location."@en;
    rdfs:subClassOf schema:Thing;
    rdfs:isDefinedBy <http://schema.org/Event>;
    .
schema:BusinessEvent a rdfs:Class;
    rdfs:label "Business Event"@en;
    rdfs:comment "Event type: Business event."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/BusinessEvent>;
    .
schema:ChildrensEvent a rdfs:Class;
    rdfs:label "Childrens Event"@en;
    rdfs:comment "Event type: Children's event."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/ChildrensEvent>;
    .
schema:ComedyEvent a rdfs:Class;
    rdfs:label "Comedy Event"@en;
    rdfs:comment "Event type: Comedy event."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/ComedyEvent>;
    .
schema:DanceEvent a rdfs:Class;
    rdfs:label "Dance Event"@en;
    rdfs:comment "Event type: A social dance."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/DanceEvent>;
    .
schema:EducationEvent a rdfs:Class;
    rdfs:label "Education Event"@en;
    rdfs:comment "Event type: Education event."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/EducationEvent>;
    .
schema:Festival a rdfs:Class;
    rdfs:label "Festival"@en;
    rdfs:comment "Event type: Festival."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/Festival>;
    .
schema:FoodEvent a rdfs:Class;
    rdfs:label "Food Event"@en;
    rdfs:comment "Event type: Food event."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/FoodEvent>;
    .
schema:LiteraryEvent a rdfs:Class;
    rdfs:label "Literary Event"@en;
    rdfs:comment "Event type: Literary event."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/LiteraryEvent>;
    .
schema:MusicEvent a rdfs:Class;
    rdfs:label "Music Event"@en;
    rdfs:comment "Event type: Music event."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/MusicEvent>;
    .
schema:SaleEvent a rdfs:Class;
    rdfs:label "Sale Event"@en;
    rdfs:comment "Event type: Sales event."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/SaleEvent>;
    .
schema:SocialEvent a rdfs:Class;
    rdfs:label "Social Event"@en;
    rdfs:comment "Event type: Social event."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/SocialEvent>;
    .
schema:SportsEvent a rdfs:Class;
    rdfs:label "Sports Event"@en;
    rdfs:comment "Event type: Sports event."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/SportsEvent>;
    .
schema:TheaterEvent a rdfs:Class;
    rdfs:label "Theater Event"@en;
    rdfs:comment "Event type: Theater performance."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/TheaterEvent>;
    .
schema:UserInteraction a rdfs:Class;
    rdfs:label "User Interaction"@en;
    rdfs:comment "A user interacting with a page"@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/UserInteraction>;
    .
schema:UserBlocks a rdfs:Class;
    rdfs:label "User Blocks"@en;
    rdfs:comment "User interaction: Block this content."@en;
    rdfs:subClassOf schema:UserInteraction;
    rdfs:isDefinedBy <http://schema.org/UserBlocks>;
    .
schema:UserCheckins a rdfs:Class;
    rdfs:label "User Checkins"@en;
    rdfs:comment "User interaction: Check-in at a place."@en;
    rdfs:subClassOf schema:UserInteraction;
    rdfs:isDefinedBy <http://schema.org/UserCheckins>;
    .
schema:UserComments a rdfs:Class;
    rdfs:label "User Comments"@en;
    rdfs:comment "The UserInteraction event in which a user comments on an item."@en;
    rdfs:subClassOf schema:UserInteraction;
    rdfs:isDefinedBy <http://schema.org/UserComments>;
    .
schema:UserDownloads a rdfs:Class;
    rdfs:label "User Downloads"@en;
    rdfs:comment "User interaction: Download of an item."@en;
    rdfs:subClassOf schema:UserInteraction;
    rdfs:isDefinedBy <http://schema.org/UserDownloads>;
    .
schema:UserLikes a rdfs:Class;
    rdfs:label "User Likes"@en;
    rdfs:comment "User interaction: Like an item."@en;
    rdfs:subClassOf schema:UserInteraction;
    rdfs:isDefinedBy <http://schema.org/UserLikes>;
    .
schema:UserPageVisits a rdfs:Class;
    rdfs:label "User Page Visits"@en;
    rdfs:comment "User interaction: Visit to a web page."@en;
    rdfs:subClassOf schema:UserInteraction;
    rdfs:isDefinedBy <http://schema.org/UserPageVisits>;
    .
schema:UserPlays a rdfs:Class;
    rdfs:label "User Plays"@en;
    rdfs:comment "User interaction: Play count of an item, for example a video or a song."@en;
    rdfs:subClassOf schema:UserInteraction;
    rdfs:isDefinedBy <http://schema.org/UserPlays>;
    .
schema:UserPlusOnes a rdfs:Class;
    rdfs:label "User Plus Ones"@en;
    rdfs:comment "User interaction: +1."@en;
    rdfs:subClassOf schema:UserInteraction;
    rdfs:isDefinedBy <http://schema.org/UserPlusOnes>;
    .
schema:UserTweets a rdfs:Class;
    rdfs:label "User Tweets"@en;
    rdfs:comment "User interaction: Tweets."@en;
    rdfs:subClassOf schema:UserInteraction;
    rdfs:isDefinedBy <http://schema.org/UserTweets>;
    .
schema:VisualArtsEvent a rdfs:Class;
    rdfs:label "Visual Arts Event"@en;
    rdfs:comment "Event type: Visual arts event."@en;
    rdfs:subClassOf schema:Event;
    rdfs:isDefinedBy <http://schema.org/VisualArtsEvent>;
    .
schema:Intangible a rdfs:Class;
    rdfs:label "Intangible"@en;
    rdfs:comment "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc."@en;
    rdfs:subClassOf schema:Thing;
    rdfs:isDefinedBy <http://schema.org/Intangible>;
    .
schema:AlignmentObject a rdfs:Class;
    rdfs:label "Alignment Object"@en;
    rdfs:comment "An intangible item that describes an alignment between a learning resource and a node in an educational framework."@en;
    rdfs:subClassOf schema:Intangible;
    rdfs:isDefinedBy <http://schema.org/AlignmentObject>;
    .
schema:Audience a rdfs:Class;
    rdfs:label "Audience"@en;
    rdfs:comment "Intended audience for an item, i.e. the group for whom the item was created."@en;
    rdfs:subClassOf schema:Intangible;
    rdfs:isDefinedBy <http://schema.org/Audience>;
    .
schema:EducationalAudience a rdfs:Class;
    rdfs:label "Educational Audience"@en;
    rdfs:comment "An EducationalAudience"@en;
    rdfs:subClassOf schema:Audience;
    rdfs:isDefinedBy <http://schema.org/EducationalAudience>;
    .
schema:MedicalAudience a rdfs:Class;
    rdfs:label "Medical Audience"@en;
    rdfs:comment "Target audiences for medical web pages. Enumerated type."@en;
    rdfs:subClassOf schema:PeopleAudience;
    rdfs:subClassOf schema:Audience;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/MedicalAudience>;
    .
schema:PeopleAudience a rdfs:Class;
    rdfs:label "People Audience"@en;
    rdfs:comment "A set of characteristics belonging to people, e.g. who compose an item's target audience."@en;
    rdfs:subClassOf schema:Audience;
    rdfs:isDefinedBy <http://schema.org/PeopleAudience>;
    .
schema:ParentAudience a rdfs:Class;
    rdfs:label "Parent Audience"@en;
    rdfs:comment "A set of characteristics describing parents, who can be interested in viewing some content"@en;
    rdfs:subClassOf schema:PeopleAudience;
    rdfs:isDefinedBy <http://schema.org/ParentAudience>;
    .
schema:Brand a rdfs:Class;
    rdfs:label "Brand"@en;
    rdfs:comment "A brand is a name used by an organization or business person for labeling a product, product group, or similar."@en;
    rdfs:subClassOf schema:Intangible;
    rdfs:isDefinedBy <http://schema.org/Brand>;
    .
schema:Demand a rdfs:Class;
    rdfs:label "Demand"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:Intangible;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:Enumeration a rdfs:Class;
    rdfs:label "Enumeration"@en;
    rdfs:comment "Lists or enumerations—for example, a list of cuisines or music genres, etc."@en;
    rdfs:subClassOf schema:Intangible;
    rdfs:isDefinedBy <http://schema.org/Enumeration>;
    .
schema:BookFormatType a rdfs:Class;
    rdfs:label "Book Format Type"@en;
    rdfs:comment "The publication format of the book."@en;
    rdfs:subClassOf schema:Enumeration;
    rdfs:isDefinedBy <http://schema.org/BookFormatType>;
    .
schema:BusinessEntityType a rdfs:Class;
    rdfs:label "Business Entity Type"@en;
    rdfs:comment "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.

Commonly used values:

http://purl.org/goodrelations/v1#Business
http://purl.org/goodrelations/v1#Enduser
http://purl.org/goodrelations/v1#PublicInstitution
http://purl.org/goodrelations/v1#Reseller"@en;
    rdfs:subClassOf schema:Enumeration;
    rdfs:isDefinedBy <http://schema.org/BusinessEntityType>;
    .
schema:BusinessFunction a rdfs:Class;
    rdfs:label "Business Function"@en;
    rdfs:comment "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.

Commonly used values:

http://purl.org/goodrelations/v1#ConstructionInstallation
http://purl.org/goodrelations/v1#Dispose
http://purl.org/goodrelations/v1#LeaseOut
http://purl.org/goodrelations/v1#Maintain
http://purl.org/goodrelations/v1#ProvideService
http://purl.org/goodrelations/v1#Repair
http://purl.org/goodrelations/v1#Sell
http://purl.org/goodrelations/v1#Buy"@en;
    rdfs:subClassOf schema:Enumeration;
    rdfs:isDefinedBy <http://schema.org/BusinessFunction>;
    .
schema:DayOfWeek a rdfs:Class;
    rdfs:label "Day of Week"@en;
    rdfs:comment "The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.

Commonly used values:

http://purl.org/goodrelations/v1#Monday
http://purl.org/goodrelations/v1#Tuesday
http://purl.org/goodrelations/v1#Wednesday
http://purl.org/goodrelations/v1#Thursday
http://purl.org/goodrelations/v1#Friday
http://purl.org/goodrelations/v1#Saturday
http://purl.org/goodrelations/v1#Sunday
http://purl.org/goodrelations/v1#PublicHolidays"@en;
    rdfs:subClassOf schema:Enumeration;
    rdfs:isDefinedBy <http://schema.org/DayOfWeek>;
    .
schema:DeliveryMethod a rdfs:Class;
    rdfs:label "Delivery Method"@en;
    rdfs:comment "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.

Commonly used values:

http://purl.org/goodrelations/v1#DeliveryModeDirectDownload
http://purl.org/goodrelations/v1#DeliveryModeFreight
http://purl.org/goodrelations/v1#DeliveryModeMail
http://purl.org/goodrelations/v1#DeliveryModeOwnFleet
http://purl.org/goodrelations/v1#DeliveryModePickUp
http://purl.org/goodrelations/v1#DHL
http://purl.org/goodrelations/v1#FederalExpress
http://purl.org/goodrelations/v1#UPS"@en;
    rdfs:subClassOf schema:Enumeration;
    rdfs:isDefinedBy <http://schema.org/DeliveryMethod>;
    .
schema:ParcelService a rdfs:Class;
    rdfs:label "Parcel Service"@en;
    rdfs:comment "A private parcel service as the delivery mode available for a certain offer.

Commonly used values:

http://purl.org/goodrelations/v1#DHL
http://purl.org/goodrelations/v1#FederalExpress
http://purl.org/goodrelations/v1#UPS"@en;
    rdfs:subClassOf schema:DeliveryMethod;
    rdfs:isDefinedBy <http://schema.org/ParcelService>;
    .
schema:ItemAvailability a rdfs:Class;
    rdfs:label "Item Availability"@en;
    rdfs:comment "A list of possible product availablity options."@en;
    rdfs:subClassOf schema:Enumeration;
    rdfs:isDefinedBy <http://schema.org/ItemAvailability>;
    .
schema:OfferItemCondition a rdfs:Class;
    rdfs:label "Offer Item Condition"@en;
    rdfs:comment "A list of possible conditions for the item for sale."@en;
    rdfs:subClassOf schema:Enumeration;
    rdfs:isDefinedBy <http://schema.org/OfferItemCondition>;
    .
schema:PaymentMethod a rdfs:Class;
    rdfs:label "Payment Method"@en;
    rdfs:comment "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.

Commonly used values:

http://purl.org/goodrelations/v1#ByBankTransferInAdvance
http://purl.org/goodrelations/v1#ByInvoice
http://purl.org/goodrelations/v1#Cash
http://purl.org/goodrelations/v1#CheckInAdvance
http://purl.org/goodrelations/v1#COD
http://purl.org/goodrelations/v1#DirectDebit
http://purl.org/goodrelations/v1#GoogleCheckout
http://purl.org/goodrelations/v1#PayPal
http://purl.org/goodrelations/v1#PaySwarm"@en;
    rdfs:subClassOf schema:Enumeration;
    rdfs:isDefinedBy <http://schema.org/PaymentMethod>;
    .
schema:CreditCard a rdfs:Class;
    rdfs:label "Credit Card"@en;
    rdfs:comment "A credit or debit card type as a standardized procedure for transferring the monetary amount for a purchase.

Commonly used values:

http://purl.org/goodrelations/v1#AmericanExpress
http://purl.org/goodrelations/v1#DinersClub
http://purl.org/goodrelations/v1#Discover
http://purl.org/goodrelations/v1#JCB
http://purl.org/goodrelations/v1#MasterCard
http://purl.org/goodrelations/v1#VISA"@en;
    rdfs:subClassOf schema:PaymentMethod;
    rdfs:isDefinedBy <http://schema.org/CreditCard>;
    .
schema:QualitativeValue a rdfs:Class;
    rdfs:label "Qualitative Value"@en;
    rdfs:comment "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\""@en;
    rdfs:subClassOf schema:Enumeration;
    rdfs:isDefinedBy <http://schema.org/QualitativeValue>;
    .
schema:Specialty a rdfs:Class;
    rdfs:label "Specialty"@en;
    rdfs:comment "Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort."@en;
    rdfs:subClassOf schema:Enumeration;
    rdfs:isDefinedBy <http://schema.org/Specialty>;
    .
schema:MedicalSpecialty a rdfs:Class;
    rdfs:label "Medical Specialty"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:Specialty;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/MedicalSpecialty>;
    .
schema:WarrantyScope a rdfs:Class;
    rdfs:label "Warranty Scope"@en;
    rdfs:comment "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.

Commonly used values:

http://purl.org/goodrelations/v1#Labor-BringIn
http://purl.org/goodrelations/v1#PartsAndLabor-BringIn
http://purl.org/goodrelations/v1#PartsAndLabor-PickUp"@en;
    rdfs:subClassOf schema:Enumeration;
    rdfs:isDefinedBy <http://schema.org/WarrantyScope>;
    .
schema:JobPosting a rdfs:Class;
    rdfs:label "Job Posting"@en;
    rdfs:comment "A listing that describes a job opening in a certain organization."@en;
    rdfs:subClassOf schema:Intangible;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:Language a rdfs:Class;
    rdfs:label "Language"@en;
    rdfs:comment "Natural languages such as Spanish, Tamil, Hindi, English, etc. and programming languages such as Scheme and Lisp."@en;
    rdfs:subClassOf schema:Intangible;
    rdfs:isDefinedBy <http://schema.org/Language>;
    .
schema:Offer a rdfs:Class;
    rdfs:label "Offer"@en;
    rdfs:comment "An offer to sell an item—for example, an offer to sell a product, the DVD of a movie, or tickets to an event."@en;
    rdfs:subClassOf schema:Intangible;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:AggregateOffer a rdfs:Class;
    rdfs:label "Aggregate Offer"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:Offer;
    rdfs:isDefinedBy <http://schema.org/AggregateOffer>;
    .
schema:Quantity a rdfs:Class;
    rdfs:label "Quantity"@en;
    rdfs:comment "Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'."@en;
    rdfs:subClassOf schema:Intangible;
    rdfs:isDefinedBy <http://schema.org/Quantity>;
    .
schema:Distance a rdfs:Class;
    rdfs:label "Distance"@en;
    rdfs:comment "Properties that take Distances as values are of the form '<Number> <Length unit of measure>'. E.g., '7 ft'"@en;
    rdfs:subClassOf schema:Quantity;
    rdfs:isDefinedBy <http://schema.org/Distance>;
    .
schema:Duration a rdfs:Class;
    rdfs:label "Duration"@en;
    rdfs:comment "Quantity: Duration (use  ISO 8601 duration format)."@en;
    rdfs:subClassOf schema:Quantity;
    rdfs:isDefinedBy <http://schema.org/Duration>;
    .
schema:Energy a rdfs:Class;
    rdfs:label "Energy"@en;
    rdfs:comment "Properties that take Enerygy as values are of the form '<Number> <Energy unit of measure>'"@en;
    rdfs:subClassOf schema:Quantity;
    rdfs:isDefinedBy <http://schema.org/Energy>;
    .
schema:Mass a rdfs:Class;
    rdfs:label "Mass"@en;
    rdfs:comment "Properties that take Mass as values are of the form '<Number> <Mass unit of measure>'. E.g., '7 kg'"@en;
    rdfs:subClassOf schema:Quantity;
    rdfs:isDefinedBy <http://schema.org/Mass>;
    .
schema:Rating a rdfs:Class;
    rdfs:label "Rating"@en;
    rdfs:comment "The rating of the video."@en;
    rdfs:subClassOf schema:Intangible;
    rdfs:isDefinedBy <http://schema.org/Rating>;
    .
schema:AggregateRating a rdfs:Class;
    rdfs:label "Aggregate Rating"@en;
    rdfs:comment "The average rating based on multiple ratings or reviews."@en;
    rdfs:subClassOf schema:Rating;
    rdfs:isDefinedBy <http://schema.org/AggregateRating>;
    .
schema:StructuredValue a rdfs:Class;
    rdfs:label "Structured Value"@en;
    rdfs:comment "Structured values are strings—for example, addresses—that have certain constraints on their structure."@en;
    rdfs:subClassOf schema:Intangible;
    rdfs:isDefinedBy <http://schema.org/StructuredValue>;
    .
schema:ContactPoint a rdfs:Class;
    rdfs:label "Contact Point"@en;
    rdfs:comment "A contact point—for example, a Customer Complaints department."@en;
    rdfs:subClassOf schema:StructuredValue;
    rdfs:isDefinedBy <http://schema.org/ContactPoint>;
    .
schema:PostalAddress a rdfs:Class;
    rdfs:label "Postal Address"@en;
    rdfs:comment "The mailing address."@en;
    rdfs:subClassOf schema:ContactPoint;
    rdfs:isDefinedBy <http://schema.org/PostalAddress>;
    .
schema:GeoCoordinates a rdfs:Class;
    rdfs:label "Geo Coordinates"@en;
    rdfs:comment "The geographic coordinates of a place or event."@en;
    rdfs:subClassOf schema:StructuredValue;
    rdfs:isDefinedBy <http://schema.org/GeoCoordinates>;
    .
schema:GeoShape a rdfs:Class;
    rdfs:label "Geo Shape"@en;
    rdfs:comment "The geographic shape of a place."@en;
    rdfs:subClassOf schema:StructuredValue;
    rdfs:isDefinedBy <http://schema.org/GeoShape>;
    .
schema:NutritionInformation a rdfs:Class;
    rdfs:label "Nutrition Information"@en;
    rdfs:comment "Nutritional information about the recipe."@en;
    rdfs:subClassOf schema:StructuredValue;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:OpeningHoursSpecification a rdfs:Class;
    rdfs:label "Opening Hours Specification"@en;
    rdfs:comment "A structured value providing information about the opening hours of a place or a certain service inside a place."@en;
    rdfs:subClassOf schema:StructuredValue;
    rdfs:isDefinedBy <http://schema.org/OpeningHoursSpecification>;
    .
schema:OwnershipInfo a rdfs:Class;
    rdfs:label "Ownership Info"@en;
    rdfs:comment "A structured value providing information about when a certain organization or person owned a certain product."@en;
    rdfs:subClassOf schema:StructuredValue;
    rdfs:isDefinedBy <http://schema.org/OwnershipInfo>;
    .
schema:PriceSpecification a rdfs:Class;
    rdfs:label "Price Specification"@en;
    rdfs:comment "A structured value representing a monetary amount. Typically, only the subclasses of this type are used for markup."@en;
    rdfs:subClassOf schema:StructuredValue;
    rdfs:isDefinedBy <http://schema.org/PriceSpecification>;
    .
schema:DeliveryChargeSpecification a rdfs:Class;
    rdfs:label "Delivery Charge Specification"@en;
    rdfs:comment "The price for the delivery of an offer using a particular delivery method."@en;
    rdfs:subClassOf schema:PriceSpecification;
    rdfs:isDefinedBy <http://schema.org/DeliveryChargeSpecification>;
    .
schema:PaymentChargeSpecification a rdfs:Class;
    rdfs:label "Payment Charge Specification"@en;
    rdfs:comment "The costs of settling the payment using a particular payment method."@en;
    rdfs:subClassOf schema:PriceSpecification;
    rdfs:isDefinedBy <http://schema.org/PaymentChargeSpecification>;
    .
schema:UnitPriceSpecification a rdfs:Class;
    rdfs:label "Unit Price Specification"@en;
    rdfs:comment "The price asked for a given offer by the respective organization or person."@en;
    rdfs:subClassOf schema:PriceSpecification;
    rdfs:isDefinedBy <http://schema.org/UnitPriceSpecification>;
    .
schema:QuantitativeValue a rdfs:Class;
    rdfs:label "Quantitative Value"@en;
    rdfs:comment "A point value or interval for product characteristics and other purposes."@en;
    rdfs:subClassOf schema:StructuredValue;
    rdfs:isDefinedBy <http://schema.org/QuantitativeValue>;
    .
schema:TypeAndQuantityNode a rdfs:Class;
    rdfs:label "Type And Quantity Node"@en;
    rdfs:comment "A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer."@en;
    rdfs:subClassOf schema:StructuredValue;
    rdfs:isDefinedBy <http://schema.org/TypeAndQuantityNode>;
    .
schema:WarrantyPromise a rdfs:Class;
    rdfs:label "Warranty Promise"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:StructuredValue;
    rdfs:isDefinedBy <http://schema.org/WarrantyPromise>;
    .
schema:MedicalEntity a rdfs:Class;
    rdfs:label "Medical Entity"@en;
    rdfs:comment "The most generic type of entity related to health and the practice of medicine."@en;
    rdfs:subClassOf schema:Thing;
    rdfs:isDefinedBy <http://schema.org/MedicalEntity>;
    .
schema:AnatomicalStructure a rdfs:Class;
    rdfs:label "Anatomical Structure"@en;
    rdfs:comment "Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/AnatomicalStructure>;
    .
schema:Bone a rdfs:Class;
    rdfs:label "Bone"@en;
    rdfs:comment "Rigid connective tissue that comprises up the skeletal structure of the human body."@en;
    rdfs:subClassOf schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Bone>;
    .
schema:BrainStructure a rdfs:Class;
    rdfs:label "Brain Structure"@en;
    rdfs:comment "Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity."@en;
    rdfs:subClassOf schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/BrainStructure>;
    .
schema:Joint a rdfs:Class;
    rdfs:label "Joint"@en;
    rdfs:comment "The anatomical location at which two or more bones make contact."@en;
    rdfs:subClassOf schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Joint>;
    .
schema:Ligament a rdfs:Class;
    rdfs:label "Ligament"@en;
    rdfs:comment "A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints."@en;
    rdfs:subClassOf schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Ligament>;
    .
schema:Muscle a rdfs:Class;
    rdfs:label "Muscle"@en;
    rdfs:comment "A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement."@en;
    rdfs:subClassOf schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Muscle>;
    .
schema:Nerve a rdfs:Class;
    rdfs:label "Nerve"@en;
    rdfs:comment "A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons."@en;
    rdfs:subClassOf schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Nerve>;
    .
schema:Vessel a rdfs:Class;
    rdfs:label "Vessel"@en;
    rdfs:comment "A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body."@en;
    rdfs:subClassOf schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Vessel>;
    .
schema:Artery a rdfs:Class;
    rdfs:label "Artery"@en;
    rdfs:comment "A type of blood vessel that specifically carries blood away from the heart."@en;
    rdfs:subClassOf schema:Vessel;
    rdfs:isDefinedBy <http://schema.org/Artery>;
    .
schema:LymphaticVessel a rdfs:Class;
    rdfs:label "Lymphatic Vessel"@en;
    rdfs:comment "A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart."@en;
    rdfs:subClassOf schema:Vessel;
    rdfs:isDefinedBy <http://schema.org/LymphaticVessel>;
    .
schema:Vein a rdfs:Class;
    rdfs:label "Vein"@en;
    rdfs:comment "A type of blood vessel that specifically carries blood to the heart."@en;
    rdfs:subClassOf schema:Vessel;
    rdfs:isDefinedBy <http://schema.org/Vein>;
    .
schema:AnatomicalSystem a rdfs:Class;
    rdfs:label "Anatomical System"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/AnatomicalSystem>;
    .
schema:MedicalCause a rdfs:Class;
    rdfs:label "Medical Cause"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalCause>;
    .
schema:MedicalCondition a rdfs:Class;
    rdfs:label "Medical Condition"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:InfectiousDisease a rdfs:Class;
    rdfs:label "Infectious Disease"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalCondition;
    rdfs:isDefinedBy <http://schema.org/InfectiousDisease>;
    .
schema:MedicalContraindication a rdfs:Class;
    rdfs:label "Medical Contraindication"@en;
    rdfs:comment "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)."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalContraindication>;
    .
schema:MedicalDevice a rdfs:Class;
    rdfs:label "Medical Device"@en;
    rdfs:comment "Any object used in a medical capacity, such as to diagnose or treat a patient."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalDevice>;
    .
schema:MedicalGuideline a rdfs:Class;
    rdfs:label "Medical Guideline"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalGuideline>;
    .
schema:MedicalGuidelineContraindication a rdfs:Class;
    rdfs:label "Medical Guideline Contraindication"@en;
    rdfs:comment "A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound."@en;
    rdfs:subClassOf schema:MedicalGuideline;
    rdfs:isDefinedBy <http://schema.org/MedicalGuidelineContraindication>;
    .
schema:MedicalGuidelineRecommendation a rdfs:Class;
    rdfs:label "Medical Guideline Recommendation"@en;
    rdfs:comment "A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound."@en;
    rdfs:subClassOf schema:MedicalGuideline;
    rdfs:isDefinedBy <http://schema.org/MedicalGuidelineRecommendation>;
    .
schema:MedicalIndication a rdfs:Class;
    rdfs:label "Medical Indication"@en;
    rdfs:comment "A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalIndication>;
    .
schema:ApprovedIndication a rdfs:Class;
    rdfs:label "Approved Indication"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalIndication;
    rdfs:isDefinedBy <http://schema.org/ApprovedIndication>;
    .
schema:PreventionIndication a rdfs:Class;
    rdfs:label "Prevention Indication"@en;
    rdfs:comment "An indication for preventing an underlying condition, symptom, etc."@en;
    rdfs:subClassOf schema:MedicalIndication;
    rdfs:isDefinedBy <http://schema.org/PreventionIndication>;
    .
schema:TreatmentIndication a rdfs:Class;
    rdfs:label "Treatment Indication"@en;
    rdfs:comment "An indication for treating an underlying condition, symptom, etc."@en;
    rdfs:subClassOf schema:MedicalIndication;
    rdfs:isDefinedBy <http://schema.org/TreatmentIndication>;
    .
schema:MedicalIntangible a rdfs:Class;
    rdfs:label "Medical Intangible"@en;
    rdfs:comment "A utility class that serves as the umbrella for a number of 'intangible' things in the medical space."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalIntangible>;
    .
schema:DDxElement a rdfs:Class;
    rdfs:label "D Dx Element"@en;
    rdfs:comment "An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it."@en;
    rdfs:subClassOf schema:MedicalIntangible;
    rdfs:isDefinedBy <http://schema.org/DDxElement>;
    .
schema:DoseSchedule a rdfs:Class;
    rdfs:label "Dose Schedule"@en;
    rdfs:comment "A specific dosing schedule for a drug or supplement."@en;
    rdfs:subClassOf schema:MedicalIntangible;
    rdfs:isDefinedBy <http://schema.org/DoseSchedule>;
    .
schema:MaximumDoseSchedule a rdfs:Class;
    rdfs:label "Maximum Dose Schedule"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:DoseSchedule;
    rdfs:isDefinedBy <http://schema.org/MaximumDoseSchedule>;
    .
schema:RecommendedDoseSchedule a rdfs:Class;
    rdfs:label "Recommended Dose Schedule"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:DoseSchedule;
    rdfs:isDefinedBy <http://schema.org/RecommendedDoseSchedule>;
    .
schema:ReportedDoseSchedule a rdfs:Class;
    rdfs:label "Reported Dose Schedule"@en;
    rdfs:comment "A patient-reported or observed dosing schedule for a drug or supplement."@en;
    rdfs:subClassOf schema:DoseSchedule;
    rdfs:isDefinedBy <http://schema.org/ReportedDoseSchedule>;
    .
schema:DrugCost a rdfs:Class;
    rdfs:label "Drug Cost"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalIntangible;
    rdfs:isDefinedBy <http://schema.org/DrugCost>;
    .
schema:DrugLegalStatus a rdfs:Class;
    rdfs:label "Drug Legal Status"@en;
    rdfs:comment "The legal availability status of a medical drug."@en;
    rdfs:subClassOf schema:MedicalIntangible;
    rdfs:isDefinedBy <http://schema.org/DrugLegalStatus>;
    .
schema:DrugStrength a rdfs:Class;
    rdfs:label "Drug Strength"@en;
    rdfs:comment "A specific strength in which a medical drug is available in a specific country."@en;
    rdfs:subClassOf schema:MedicalIntangible;
    rdfs:isDefinedBy <http://schema.org/DrugStrength>;
    .
schema:MedicalCode a rdfs:Class;
    rdfs:label "Medical Code"@en;
    rdfs:comment "A code for a medical entity."@en;
    rdfs:subClassOf schema:MedicalIntangible;
    rdfs:isDefinedBy <http://schema.org/MedicalCode>;
    .
schema:MedicalConditionStage a rdfs:Class;
    rdfs:label "Medical Condition Stage"@en;
    rdfs:comment "A stage of a medical condition, such as 'Stage IIIa'."@en;
    rdfs:subClassOf schema:MedicalIntangible;
    rdfs:isDefinedBy <http://schema.org/MedicalConditionStage>;
    .
schema:MedicalEnumeration a rdfs:Class;
    rdfs:label "Medical Enumeration"@en;
    rdfs:comment "Enumerations related to health and the practice of medicine."@en;
    rdfs:subClassOf schema:MedicalIntangible;
    rdfs:isDefinedBy <http://schema.org/MedicalEnumeration>;
    .
schema:DrugCostCategory a rdfs:Class;
    rdfs:label "Drug Cost Category"@en;
    rdfs:comment "Enumerated categories of medical drug costs."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/DrugCostCategory>;
    .
schema:DrugPregnancyCategory a rdfs:Class;
    rdfs:label "Drug Pregnancy Category"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/DrugPregnancyCategory>;
    .
schema:DrugPrescriptionStatus a rdfs:Class;
    rdfs:label "Drug Prescription Status"@en;
    rdfs:comment "Indicates whether this drug is available by prescription or over-the-counter."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/DrugPrescriptionStatus>;
    .
schema:InfectiousAgentClass a rdfs:Class;
    rdfs:label "Infectious Agent Class"@en;
    rdfs:comment "Classes of agents or pathogens that transmit infectious diseases. Enumerated type."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/InfectiousAgentClass>;
    .
schema:MedicalDevicePurpose a rdfs:Class;
    rdfs:label "Medical Device Purpose"@en;
    rdfs:comment "Categories of medical devices, organized by the purpose or intended use of the device."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/MedicalDevicePurpose>;
    .
schema:MedicalEvidenceLevel a rdfs:Class;
    rdfs:label "Medical Evidence Level"@en;
    rdfs:comment "Level of evidence for a medical guideline. Enumerated type."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/MedicalEvidenceLevel>;
    .
schema:MedicalImagingTechnique a rdfs:Class;
    rdfs:label "Medical Imaging Technique"@en;
    rdfs:comment "Any medical imaging modality typically used for diagnostic purposes. Enumerated type."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/MedicalImagingTechnique>;
    .
schema:MedicalObservationalStudyDesign a rdfs:Class;
    rdfs:label "Medical Observational Study Design"@en;
    rdfs:comment "Design models for observational medical studies. Enumerated type."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/MedicalObservationalStudyDesign>;
    .
schema:MedicalProcedureType a rdfs:Class;
    rdfs:label "Medical Procedure Type"@en;
    rdfs:comment "An enumeration that describes different types of medical procedures."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/MedicalProcedureType>;
    .
schema:MedicalStudyStatus a rdfs:Class;
    rdfs:label "Medical Study Status"@en;
    rdfs:comment "The status of a medical study. Enumerated type."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/MedicalStudyStatus>;
    .
schema:MedicalTrialDesign a rdfs:Class;
    rdfs:label "Medical Trial Design"@en;
    rdfs:comment "Design models for medical trials. Enumerated type."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/MedicalTrialDesign>;
    .
schema:MedicineSystem a rdfs:Class;
    rdfs:label "Medicine System"@en;
    rdfs:comment "Systems of medical practice."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/MedicineSystem>;
    .
schema:PhysicalActivityCategory a rdfs:Class;
    rdfs:label "Physical Activity Category"@en;
    rdfs:comment "Categories of physical activity, organized by physiologic classification."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/PhysicalActivityCategory>;
    .
schema:PhysicalExam a rdfs:Class;
    rdfs:label "Physical Exam"@en;
    rdfs:comment "A type of physical examination of a patient performed by a physician. Enumerated type."@en;
    rdfs:subClassOf schema:MedicalEnumeration;
    rdfs:isDefinedBy <http://schema.org/PhysicalExam>;
    .
schema:MedicalProcedure a rdfs:Class;
    rdfs:label "Medical Procedure"@en;
    rdfs:comment "A process of care used in either a diagnostic, therapeutic, or palliative capacity that relies on invasive (surgical), non-invasive, or percutaneous techniques."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalProcedure>;
    .
schema:DiagnosticProcedure a rdfs:Class;
    rdfs:label "Diagnostic Procedure"@en;
    rdfs:comment "A medical procedure intended primarly for diagnostic, as opposed to therapeutic, purposes."@en;
    rdfs:subClassOf schema:MedicalProcedure;
    rdfs:subClassOf schema:MedicalTest;
    rdfs:isDefinedBy <http://schema.org/DiagnosticProcedure>;
    .
schema:PalliativeProcedure a rdfs:Class;
    rdfs:label "Palliative Procedure"@en;
    rdfs:comment "A medical procedure intended primarly for palliative purposes, aimed at relieving the symptoms of an underlying health condition."@en;
    rdfs:subClassOf schema:MedicalProcedure;
    rdfs:subClassOf schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/PalliativeProcedure>;
    .
schema:TherapeuticProcedure a rdfs:Class;
    rdfs:label "Therapeutic Procedure"@en;
    rdfs:comment "A medical procedure intended primarly for therapeutic purposes, aimed at improving a health condition."@en;
    rdfs:subClassOf schema:MedicalProcedure;
    rdfs:subClassOf schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/TherapeuticProcedure>;
    .
schema:MedicalRiskEstimator a rdfs:Class;
    rdfs:label "Medical Risk Estimator"@en;
    rdfs:comment "Any rule set or interactive tool for estimating the risk of developing a complication or condition."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalRiskEstimator>;
    .
schema:MedicalRiskCalculator a rdfs:Class;
    rdfs:label "Medical Risk Calculator"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalRiskEstimator;
    rdfs:isDefinedBy <http://schema.org/MedicalRiskCalculator>;
    .
schema:MedicalRiskScore a rdfs:Class;
    rdfs:label "Medical Risk Score"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalRiskEstimator;
    rdfs:isDefinedBy <http://schema.org/MedicalRiskScore>;
    .
schema:MedicalRiskFactor a rdfs:Class;
    rdfs:label "Medical Risk Factor"@en;
    rdfs:comment "A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalRiskFactor>;
    .
schema:MedicalSignOrSymptom a rdfs:Class;
    rdfs:label "Medical Sign or Symptom"@en;
    rdfs:comment "Any indication of the existence of a medical condition or disease."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalSignOrSymptom>;
    .
schema:MedicalSign a rdfs:Class;
    rdfs:label "Medical Sign"@en;
    rdfs:comment "Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination."@en;
    rdfs:subClassOf schema:MedicalSignOrSymptom;
    rdfs:isDefinedBy <http://schema.org/MedicalSign>;
    .
schema:MedicalSymptom a rdfs:Class;
    rdfs:label "Medical Symptom"@en;
    rdfs:comment "Any indication of the existence of a medical condition or disease that is apparent to the patient."@en;
    rdfs:subClassOf schema:MedicalSignOrSymptom;
    rdfs:isDefinedBy <http://schema.org/MedicalSymptom>;
    .
schema:MedicalStudy a rdfs:Class;
    rdfs:label "Medical Study"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalStudy>;
    .
schema:MedicalObservationalStudy a rdfs:Class;
    rdfs:label "Medical Observational Study"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalStudy;
    rdfs:isDefinedBy <http://schema.org/MedicalObservationalStudy>;
    .
schema:MedicalTrial a rdfs:Class;
    rdfs:label "Medical Trial"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalStudy;
    rdfs:isDefinedBy <http://schema.org/MedicalTrial>;
    .
schema:MedicalTest a rdfs:Class;
    rdfs:label "Medical Test"@en;
    rdfs:comment "Any medical test, typically performed for diagnostic purposes."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalTest>;
    .
schema:BloodTest a rdfs:Class;
    rdfs:label "Blood Test"@en;
    rdfs:comment "A medical test performed on a sample of a patient's blood."@en;
    rdfs:subClassOf schema:MedicalTest;
    rdfs:isDefinedBy <http://schema.org/BloodTest>;
    .
schema:ImagingTest a rdfs:Class;
    rdfs:label "Imaging Test"@en;
    rdfs:comment "Any medical imaging modality typically used for diagnostic purposes."@en;
    rdfs:subClassOf schema:MedicalTest;
    rdfs:isDefinedBy <http://schema.org/ImagingTest>;
    .
schema:MedicalTestPanel a rdfs:Class;
    rdfs:label "Medical Test Panel"@en;
    rdfs:comment "Any collection of tests commonly ordered together."@en;
    rdfs:subClassOf schema:MedicalTest;
    rdfs:isDefinedBy <http://schema.org/MedicalTestPanel>;
    .
schema:PathologyTest a rdfs:Class;
    rdfs:label "Pathology Test"@en;
    rdfs:comment "A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist."@en;
    rdfs:subClassOf schema:MedicalTest;
    rdfs:isDefinedBy <http://schema.org/PathologyTest>;
    .
schema:MedicalTherapy a rdfs:Class;
    rdfs:label "Medical Therapy"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalTherapy>;
    .
schema:DietarySupplement a rdfs:Class;
    rdfs:label "Dietary Supplement"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    .
schema:Drug a rdfs:Class;
    rdfs:label "Drug"@en;
    rdfs:comment "A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism."@en;
    rdfs:subClassOf schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:DrugClass a rdfs:Class;
    rdfs:label "Drug Class"@en;
    rdfs:comment "A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc."@en;
    rdfs:subClassOf schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/DrugClass>;
    .
schema:LifestyleModification a rdfs:Class;
    rdfs:label "Lifestyle Modification"@en;
    rdfs:comment "A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition."@en;
    rdfs:subClassOf schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/LifestyleModification>;
    .
schema:PhysicalActivity a rdfs:Class;
    rdfs:label "Physical Activity"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:LifestyleModification;
    rdfs:isDefinedBy <http://schema.org/PhysicalActivity>;
    .
schema:PhysicalTherapy a rdfs:Class;
    rdfs:label "Physical Therapy"@en;
    rdfs:comment "A process of progressive physical care and rehabilitation aimed at improving a health condition."@en;
    rdfs:subClassOf schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/PhysicalTherapy>;
    .
schema:PsychologicalTreatment a rdfs:Class;
    rdfs:label "Psychological Treatment"@en;
    rdfs:comment "A process of care relying upon counseling, dialogue, communication, verbalization aimed at improving a mental health condition."@en;
    rdfs:subClassOf schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/PsychologicalTreatment>;
    .
schema:RadiationTherapy a rdfs:Class;
    rdfs:label "Radiation Therapy"@en;
    rdfs:comment "A process of care using radiation aimed at improving a health condition."@en;
    rdfs:subClassOf schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/RadiationTherapy>;
    .
schema:SuperficialAnatomy a rdfs:Class;
    rdfs:label "Superficial Anatomy"@en;
    rdfs:comment "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)."@en;
    rdfs:subClassOf schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/SuperficialAnatomy>;
    .
schema:Organization a rdfs:Class;
    rdfs:label "Organization"@en;
    rdfs:comment "An organization such as a school, NGO, corporation, club, etc."@en;
    rdfs:subClassOf schema:Thing;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    .
schema:Corporation a rdfs:Class;
    rdfs:label "Corporation"@en;
    rdfs:comment "Organization: A business corporation."@en;
    rdfs:subClassOf schema:Organization;
    rdfs:isDefinedBy <http://schema.org/Corporation>;
    .
schema:EducationalOrganization a rdfs:Class;
    rdfs:label "Educational Organization"@en;
    rdfs:comment "An educational organization."@en;
    rdfs:subClassOf schema:Organization;
    rdfs:isDefinedBy <http://schema.org/EducationalOrganization>;
    .
schema:CollegeOrUniversity a rdfs:Class;
    rdfs:label "College or University"@en;
    rdfs:comment "A college, university, or other third-level educational institution."@en;
    rdfs:subClassOf schema:EducationalOrganization;
    rdfs:isDefinedBy <http://schema.org/CollegeOrUniversity>;
    .
schema:ElementarySchool a rdfs:Class;
    rdfs:label "Elementary School"@en;
    rdfs:comment "An elementary school."@en;
    rdfs:subClassOf schema:EducationalOrganization;
    rdfs:isDefinedBy <http://schema.org/ElementarySchool>;
    .
schema:HighSchool a rdfs:Class;
    rdfs:label "High School"@en;
    rdfs:comment "A high school."@en;
    rdfs:subClassOf schema:EducationalOrganization;
    rdfs:isDefinedBy <http://schema.org/HighSchool>;
    .
schema:MiddleSchool a rdfs:Class;
    rdfs:label "Middle School"@en;
    rdfs:comment "A middle school."@en;
    rdfs:subClassOf schema:EducationalOrganization;
    rdfs:isDefinedBy <http://schema.org/MiddleSchool>;
    .
schema:Preschool a rdfs:Class;
    rdfs:label "Preschool"@en;
    rdfs:comment "A preschool."@en;
    rdfs:subClassOf schema:EducationalOrganization;
    rdfs:isDefinedBy <http://schema.org/Preschool>;
    .
schema:School a rdfs:Class;
    rdfs:label "School"@en;
    rdfs:comment "A school."@en;
    rdfs:subClassOf schema:EducationalOrganization;
    rdfs:isDefinedBy <http://schema.org/School>;
    .
schema:GovernmentOrganization a rdfs:Class;
    rdfs:label "Government Organization"@en;
    rdfs:comment "A governmental organization or agency."@en;
    rdfs:subClassOf schema:Organization;
    rdfs:isDefinedBy <http://schema.org/GovernmentOrganization>;
    .
schema:LocalBusiness a rdfs:Class;
    rdfs:label "Local Business"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:Organization;
    rdfs:subClassOf schema:Place;
    rdfs:isDefinedBy <http://schema.org/LocalBusiness>;
    .
schema:AnimalShelter a rdfs:Class;
    rdfs:label "Animal Shelter"@en;
    rdfs:comment "Animal shelter."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/AnimalShelter>;
    .
schema:AutomotiveBusiness a rdfs:Class;
    rdfs:label "Automotive Business"@en;
    rdfs:comment "Car repair, sales, or parts."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/AutomotiveBusiness>;
    .
schema:AutoBodyShop a rdfs:Class;
    rdfs:label "Auto Body Shop"@en;
    rdfs:comment "Auto body shop."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/AutoBodyShop>;
    .
schema:AutoDealer a rdfs:Class;
    rdfs:label "Auto Dealer"@en;
    rdfs:comment "An car dealership."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/AutoDealer>;
    .
schema:AutoPartsStore a rdfs:Class;
    rdfs:label "Auto Parts Store"@en;
    rdfs:comment "An auto parts store."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/AutoPartsStore>;
    .
schema:AutoRental a rdfs:Class;
    rdfs:label "Auto Rental"@en;
    rdfs:comment "A car rental business."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/AutoRental>;
    .
schema:AutoRepair a rdfs:Class;
    rdfs:label "Auto Repair"@en;
    rdfs:comment "Car repair business."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/AutoRepair>;
    .
schema:AutoWash a rdfs:Class;
    rdfs:label "Auto Wash"@en;
    rdfs:comment "A car wash business."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/AutoWash>;
    .
schema:GasStation a rdfs:Class;
    rdfs:label "Gas Station"@en;
    rdfs:comment "A gas station."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/GasStation>;
    .
schema:MotorcycleDealer a rdfs:Class;
    rdfs:label "Motorcycle Dealer"@en;
    rdfs:comment "A motorcycle dealer."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/MotorcycleDealer>;
    .
schema:MotorcycleRepair a rdfs:Class;
    rdfs:label "Motorcycle Repair"@en;
    rdfs:comment "A motorcycle repair shop."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/MotorcycleRepair>;
    .
schema:ChildCare a rdfs:Class;
    rdfs:label "Child Care"@en;
    rdfs:comment "A Childcare center."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/ChildCare>;
    .
schema:DryCleaningOrLaundry a rdfs:Class;
    rdfs:label "Dry Cleaning or Laundry"@en;
    rdfs:comment "A dry-cleaning business."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/DryCleaningOrLaundry>;
    .
schema:EmergencyService a rdfs:Class;
    rdfs:label "Emergency Service"@en;
    rdfs:comment "An emergency service, such as a fire station or ER."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/EmergencyService>;
    .
schema:FireStation a rdfs:Class;
    rdfs:label "Fire Station"@en;
    rdfs:comment "A fire station. With firemen."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:subClassOf schema:EmergencyService;
    rdfs:isDefinedBy <http://schema.org/FireStation>;
    .
schema:Hospital a rdfs:Class;
    rdfs:label "Hospital"@en;
    rdfs:comment "A hospital."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:subClassOf schema:EmergencyService;
    rdfs:isDefinedBy <http://schema.org/Hospital>;
    .
schema:PoliceStation a rdfs:Class;
    rdfs:label "Police Station"@en;
    rdfs:comment "A police station."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:subClassOf schema:EmergencyService;
    rdfs:isDefinedBy <http://schema.org/PoliceStation>;
    .
schema:EmploymentAgency a rdfs:Class;
    rdfs:label "Employment Agency"@en;
    rdfs:comment "An employment agency."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/EmploymentAgency>;
    .
schema:EntertainmentBusiness a rdfs:Class;
    rdfs:label "Entertainment Business"@en;
    rdfs:comment "A business providing entertainment."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/EntertainmentBusiness>;
    .
schema:AdultEntertainment a rdfs:Class;
    rdfs:label "Adult Entertainment"@en;
    rdfs:comment "An adult entertainment establishment."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/AdultEntertainment>;
    .
schema:AmusementPark a rdfs:Class;
    rdfs:label "Amusement Park"@en;
    rdfs:comment "An amusement park."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/AmusementPark>;
    .
schema:ArtGallery a rdfs:Class;
    rdfs:label "Art Gallery"@en;
    rdfs:comment "An art gallery."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/ArtGallery>;
    .
schema:Casino a rdfs:Class;
    rdfs:label "Casino"@en;
    rdfs:comment "A casino."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/Casino>;
    .
schema:ComedyClub a rdfs:Class;
    rdfs:label "Comedy Club"@en;
    rdfs:comment "A comedy club."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/ComedyClub>;
    .
schema:MovieTheater a rdfs:Class;
    rdfs:label "Movie Theater"@en;
    rdfs:comment "A movie theater."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/MovieTheater>;
    .
schema:NightClub a rdfs:Class;
    rdfs:label "Night Club"@en;
    rdfs:comment "A nightclub or discotheque."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/NightClub>;
    .
schema:FinancialService a rdfs:Class;
    rdfs:label "Financial Service"@en;
    rdfs:comment "Financial services business."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/FinancialService>;
    .
schema:AccountingService a rdfs:Class;
    rdfs:label "Accounting Service"@en;
    rdfs:comment "Accountancy business."@en;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:subClassOf schema:FinancialService;
    rdfs:isDefinedBy <http://schema.org/AccountingService>;
    .
schema:AutomatedTeller a rdfs:Class;
    rdfs:label "Automated Teller"@en;
    rdfs:comment "ATM/cash machine."@en;
    rdfs:subClassOf schema:FinancialService;
    rdfs:isDefinedBy <http://schema.org/AutomatedTeller>;
    .
schema:BankOrCreditUnion a rdfs:Class;
    rdfs:label "Bank or Credit Union"@en;
    rdfs:comment "Bank or credit union."@en;
    rdfs:subClassOf schema:FinancialService;
    rdfs:isDefinedBy <http://schema.org/BankOrCreditUnion>;
    .
schema:InsuranceAgency a rdfs:Class;
    rdfs:label "Insurance Agency"@en;
    rdfs:comment "Insurance agency."@en;
    rdfs:subClassOf schema:FinancialService;
    rdfs:isDefinedBy <http://schema.org/InsuranceAgency>;
    .
schema:FoodEstablishment a rdfs:Class;
    rdfs:label "Food Establishment"@en;
    rdfs:comment "A food-related business."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/FoodEstablishment>;
    .
schema:Bakery a rdfs:Class;
    rdfs:label "Bakery"@en;
    rdfs:comment "A bakery."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/Bakery>;
    .
schema:BarOrPub a rdfs:Class;
    rdfs:label "Bar or Pub"@en;
    rdfs:comment "A bar or pub."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/BarOrPub>;
    .
schema:Brewery a rdfs:Class;
    rdfs:label "Brewery"@en;
    rdfs:comment "Brewery."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/Brewery>;
    .
schema:CafeOrCoffeeShop a rdfs:Class;
    rdfs:label "Cafe or Coffee Shop"@en;
    rdfs:comment "A cafe or coffee shop."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/CafeOrCoffeeShop>;
    .
schema:FastFoodRestaurant a rdfs:Class;
    rdfs:label "Fast Food Restaurant"@en;
    rdfs:comment "A fast-food restaurant."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/FastFoodRestaurant>;
    .
schema:IceCreamShop a rdfs:Class;
    rdfs:label "Ice Cream Shop"@en;
    rdfs:comment "An ice cream shop"@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/IceCreamShop>;
    .
schema:Restaurant a rdfs:Class;
    rdfs:label "Restaurant"@en;
    rdfs:comment "A restaurant."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/Restaurant>;
    .
schema:Winery a rdfs:Class;
    rdfs:label "Winery"@en;
    rdfs:comment "A winery."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/Winery>;
    .
schema:GovernmentOffice a rdfs:Class;
    rdfs:label "Government Office"@en;
    rdfs:comment "A government office—for example, an IRS or DMV office."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/GovernmentOffice>;
    .
schema:PostOffice a rdfs:Class;
    rdfs:label "Post Office"@en;
    rdfs:comment "A post office."@en;
    rdfs:subClassOf schema:GovernmentOffice;
    rdfs:isDefinedBy <http://schema.org/PostOffice>;
    .
schema:HealthAndBeautyBusiness a rdfs:Class;
    rdfs:label "Health And Beauty Business"@en;
    rdfs:comment "Health and beauty."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/HealthAndBeautyBusiness>;
    .
schema:BeautySalon a rdfs:Class;
    rdfs:label "Beauty Salon"@en;
    rdfs:comment "Beauty salon."@en;
    rdfs:subClassOf schema:HealthAndBeautyBusiness;
    rdfs:isDefinedBy <http://schema.org/BeautySalon>;
    .
schema:DaySpa a rdfs:Class;
    rdfs:label "Day Spa"@en;
    rdfs:comment "A day spa."@en;
    rdfs:subClassOf schema:HealthAndBeautyBusiness;
    rdfs:isDefinedBy <http://schema.org/DaySpa>;
    .
schema:HairSalon a rdfs:Class;
    rdfs:label "Hair Salon"@en;
    rdfs:comment "A hair salon."@en;
    rdfs:subClassOf schema:HealthAndBeautyBusiness;
    rdfs:isDefinedBy <http://schema.org/HairSalon>;
    .
schema:HealthClub a rdfs:Class;
    rdfs:label "Health Club"@en;
    rdfs:comment "A health club."@en;
    rdfs:subClassOf schema:HealthAndBeautyBusiness;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/HealthClub>;
    .
schema:NailSalon a rdfs:Class;
    rdfs:label "Nail Salon"@en;
    rdfs:comment "A nail salon."@en;
    rdfs:subClassOf schema:HealthAndBeautyBusiness;
    rdfs:isDefinedBy <http://schema.org/NailSalon>;
    .
schema:TattooParlor a rdfs:Class;
    rdfs:label "Tattoo Parlor"@en;
    rdfs:comment "A tattoo parlor."@en;
    rdfs:subClassOf schema:HealthAndBeautyBusiness;
    rdfs:isDefinedBy <http://schema.org/TattooParlor>;
    .
schema:HomeAndConstructionBusiness a rdfs:Class;
    rdfs:label "Home And Construction Business"@en;
    rdfs:comment "A construction business."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/HomeAndConstructionBusiness>;
    .
schema:Electrician a rdfs:Class;
    rdfs:label "Electrician"@en;
    rdfs:comment "An electrician."@en;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:subClassOf schema:HomeAndConstructionBusiness;
    rdfs:isDefinedBy <http://schema.org/Electrician>;
    .
schema:GeneralContractor a rdfs:Class;
    rdfs:label "General Contractor"@en;
    rdfs:comment "A general contractor."@en;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:subClassOf schema:HomeAndConstructionBusiness;
    rdfs:isDefinedBy <http://schema.org/GeneralContractor>;
    .
schema:HVACBusiness a rdfs:Class;
    rdfs:label "HVAC Business"@en;
    rdfs:comment "An HVAC service."@en;
    rdfs:subClassOf schema:HomeAndConstructionBusiness;
    rdfs:isDefinedBy <http://schema.org/HVACBusiness>;
    .
schema:HousePainter a rdfs:Class;
    rdfs:label "House Painter"@en;
    rdfs:comment "A house painting service."@en;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:subClassOf schema:HomeAndConstructionBusiness;
    rdfs:isDefinedBy <http://schema.org/HousePainter>;
    .
schema:Locksmith a rdfs:Class;
    rdfs:label "Locksmith"@en;
    rdfs:comment "A locksmith."@en;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:subClassOf schema:HomeAndConstructionBusiness;
    rdfs:isDefinedBy <http://schema.org/Locksmith>;
    .
schema:MovingCompany a rdfs:Class;
    rdfs:label "Moving Company"@en;
    rdfs:comment "A moving company."@en;
    rdfs:subClassOf schema:HomeAndConstructionBusiness;
    rdfs:isDefinedBy <http://schema.org/MovingCompany>;
    .
schema:Plumber a rdfs:Class;
    rdfs:label "Plumber"@en;
    rdfs:comment "A plumbing service."@en;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:subClassOf schema:HomeAndConstructionBusiness;
    rdfs:isDefinedBy <http://schema.org/Plumber>;
    .
schema:RoofingContractor a rdfs:Class;
    rdfs:label "Roofing Contractor"@en;
    rdfs:comment "A roofing contractor."@en;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:subClassOf schema:HomeAndConstructionBusiness;
    rdfs:isDefinedBy <http://schema.org/RoofingContractor>;
    .
schema:InternetCafe a rdfs:Class;
    rdfs:label "Internet Cafe"@en;
    rdfs:comment "An internet cafe."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/InternetCafe>;
    .
schema:Library a rdfs:Class;
    rdfs:label "Library"@en;
    rdfs:comment "A library."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/Library>;
    .
schema:LodgingBusiness a rdfs:Class;
    rdfs:label "Lodging Business"@en;
    rdfs:comment "A lodging business, such as a motel, hotel, or inn."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/LodgingBusiness>;
    .
schema:BedAndBreakfast a rdfs:Class;
    rdfs:label "Bed And Breakfast"@en;
    rdfs:comment "Bed and breakfast."@en;
    rdfs:subClassOf schema:LodgingBusiness;
    rdfs:isDefinedBy <http://schema.org/BedAndBreakfast>;
    .
schema:Hostel a rdfs:Class;
    rdfs:label "Hostel"@en;
    rdfs:comment "A hostel."@en;
    rdfs:subClassOf schema:LodgingBusiness;
    rdfs:isDefinedBy <http://schema.org/Hostel>;
    .
schema:Hotel a rdfs:Class;
    rdfs:label "Hotel"@en;
    rdfs:comment "A hotel."@en;
    rdfs:subClassOf schema:LodgingBusiness;
    rdfs:isDefinedBy <http://schema.org/Hotel>;
    .
schema:Motel a rdfs:Class;
    rdfs:label "Motel"@en;
    rdfs:comment "A motel."@en;
    rdfs:subClassOf schema:LodgingBusiness;
    rdfs:isDefinedBy <http://schema.org/Motel>;
    .
schema:MedicalOrganization a rdfs:Class;
    rdfs:label "Medical Organization"@en;
    rdfs:comment "A medical organization, such as a doctor's office or clinic."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/MedicalOrganization>;
    .
schema:Dentist a rdfs:Class;
    rdfs:label "Dentist"@en;
    rdfs:comment "A dentist."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:isDefinedBy <http://schema.org/Dentist>;
    .
schema:DiagnosticLab a rdfs:Class;
    rdfs:label "Diagnostic Lab"@en;
    rdfs:comment "A medical laboratory that offers on-site or off-site diagnostic services."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/DiagnosticLab>;
    .
schema:MedicalClinic a rdfs:Class;
    rdfs:label "Medical Clinic"@en;
    rdfs:comment "A medical clinic."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/MedicalClinic>;
    .
schema:Optician a rdfs:Class;
    rdfs:label "Optician"@en;
    rdfs:comment "An optician's store."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/Optician>;
    .
schema:Pharmacy a rdfs:Class;
    rdfs:label "Pharmacy"@en;
    rdfs:comment "A pharmacy or drugstore."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/Pharmacy>;
    .
schema:Physician a rdfs:Class;
    rdfs:label "Physician"@en;
    rdfs:comment "A doctor's office."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/Physician>;
    .
schema:VeterinaryCare a rdfs:Class;
    rdfs:label "Veterinary Care"@en;
    rdfs:comment "A vet's office."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/VeterinaryCare>;
    .
schema:ProfessionalService a rdfs:Class;
    rdfs:label "Professional Service"@en;
    rdfs:comment "Provider of professional services."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/ProfessionalService>;
    .
schema:Attorney a rdfs:Class;
    rdfs:label "Attorney"@en;
    rdfs:comment "Professional service: Attorney."@en;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:isDefinedBy <http://schema.org/Attorney>;
    .
schema:Notary a rdfs:Class;
    rdfs:label "Notary"@en;
    rdfs:comment "A notary."@en;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:isDefinedBy <http://schema.org/Notary>;
    .
schema:RadioStation a rdfs:Class;
    rdfs:label "Radio Station"@en;
    rdfs:comment "A radio station."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/RadioStation>;
    .
schema:RealEstateAgent a rdfs:Class;
    rdfs:label "Real Estate Agent"@en;
    rdfs:comment "A real-estate agent."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/RealEstateAgent>;
    .
schema:RecyclingCenter a rdfs:Class;
    rdfs:label "Recycling Center"@en;
    rdfs:comment "A recycling center."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/RecyclingCenter>;
    .
schema:SelfStorage a rdfs:Class;
    rdfs:label "Self Storage"@en;
    rdfs:comment "Self-storage facility."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/SelfStorage>;
    .
schema:ShoppingCenter a rdfs:Class;
    rdfs:label "Shopping Center"@en;
    rdfs:comment "A shopping center or mall."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/ShoppingCenter>;
    .
schema:SportsActivityLocation a rdfs:Class;
    rdfs:label "Sports Activity Location"@en;
    rdfs:comment "A sports location, such as a playing field."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/SportsActivityLocation>;
    .
schema:BowlingAlley a rdfs:Class;
    rdfs:label "Bowling Alley"@en;
    rdfs:comment "A bowling alley."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/BowlingAlley>;
    .
schema:ExerciseGym a rdfs:Class;
    rdfs:label "Exercise Gym"@en;
    rdfs:comment "A gym."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/ExerciseGym>;
    .
schema:GolfCourse a rdfs:Class;
    rdfs:label "Golf Course"@en;
    rdfs:comment "A golf course."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/GolfCourse>;
    .
schema:PublicSwimmingPool a rdfs:Class;
    rdfs:label "Public Swimming Pool"@en;
    rdfs:comment "A public swimming pool."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/PublicSwimmingPool>;
    .
schema:SkiResort a rdfs:Class;
    rdfs:label "Ski Resort"@en;
    rdfs:comment "A ski resort."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/SkiResort>;
    .
schema:SportsClub a rdfs:Class;
    rdfs:label "Sports Club"@en;
    rdfs:comment "A sports club."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/SportsClub>;
    .
schema:StadiumOrArena a rdfs:Class;
    rdfs:label "Stadium or Arena"@en;
    rdfs:comment "A stadium."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/StadiumOrArena>;
    .
schema:TennisComplex a rdfs:Class;
    rdfs:label "Tennis Complex"@en;
    rdfs:comment "A tennis complex."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/TennisComplex>;
    .
schema:Store a rdfs:Class;
    rdfs:label "Store"@en;
    rdfs:comment "A retail good store."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/Store>;
    .
schema:BikeStore a rdfs:Class;
    rdfs:label "Bike Store"@en;
    rdfs:comment "A bike store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/BikeStore>;
    .
schema:BookStore a rdfs:Class;
    rdfs:label "Book Store"@en;
    rdfs:comment "A bookstore."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/BookStore>;
    .
schema:ClothingStore a rdfs:Class;
    rdfs:label "Clothing Store"@en;
    rdfs:comment "A clothing store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ClothingStore>;
    .
schema:ComputerStore a rdfs:Class;
    rdfs:label "Computer Store"@en;
    rdfs:comment "A computer store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ComputerStore>;
    .
schema:ConvenienceStore a rdfs:Class;
    rdfs:label "Convenience Store"@en;
    rdfs:comment "A convenience store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ConvenienceStore>;
    .
schema:DepartmentStore a rdfs:Class;
    rdfs:label "Department Store"@en;
    rdfs:comment "A department store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/DepartmentStore>;
    .
schema:ElectronicsStore a rdfs:Class;
    rdfs:label "Electronics Store"@en;
    rdfs:comment "An electronics store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ElectronicsStore>;
    .
schema:Florist a rdfs:Class;
    rdfs:label "Florist"@en;
    rdfs:comment "A florist."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/Florist>;
    .
schema:FurnitureStore a rdfs:Class;
    rdfs:label "Furniture Store"@en;
    rdfs:comment "A furniture store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/FurnitureStore>;
    .
schema:GardenStore a rdfs:Class;
    rdfs:label "Garden Store"@en;
    rdfs:comment "A garden store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/GardenStore>;
    .
schema:GroceryStore a rdfs:Class;
    rdfs:label "Grocery Store"@en;
    rdfs:comment "A grocery store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/GroceryStore>;
    .
schema:HardwareStore a rdfs:Class;
    rdfs:label "Hardware Store"@en;
    rdfs:comment "A hardware store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/HardwareStore>;
    .
schema:HobbyShop a rdfs:Class;
    rdfs:label "Hobby Shop"@en;
    rdfs:comment "A hobby store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/HobbyShop>;
    .
schema:HomeGoodsStore a rdfs:Class;
    rdfs:label "Home Goods Store"@en;
    rdfs:comment "A home goods store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/HomeGoodsStore>;
    .
schema:JewelryStore a rdfs:Class;
    rdfs:label "Jewelry Store"@en;
    rdfs:comment "A jewelry store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/JewelryStore>;
    .
schema:LiquorStore a rdfs:Class;
    rdfs:label "Liquor Store"@en;
    rdfs:comment "A liquor store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/LiquorStore>;
    .
schema:MensClothingStore a rdfs:Class;
    rdfs:label "Mens Clothing Store"@en;
    rdfs:comment "A men's clothing store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/MensClothingStore>;
    .
schema:MobilePhoneStore a rdfs:Class;
    rdfs:label "Mobile Phone Store"@en;
    rdfs:comment "A mobile-phone store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/MobilePhoneStore>;
    .
schema:MovieRentalStore a rdfs:Class;
    rdfs:label "Movie Rental Store"@en;
    rdfs:comment "A movie rental store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/MovieRentalStore>;
    .
schema:MusicStore a rdfs:Class;
    rdfs:label "Music Store"@en;
    rdfs:comment "A music store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/MusicStore>;
    .
schema:OfficeEquipmentStore a rdfs:Class;
    rdfs:label "Office Equipment Store"@en;
    rdfs:comment "An office equipment store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/OfficeEquipmentStore>;
    .
schema:OutletStore a rdfs:Class;
    rdfs:label "Outlet Store"@en;
    rdfs:comment "An outlet store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/OutletStore>;
    .
schema:PawnShop a rdfs:Class;
    rdfs:label "Pawn Shop"@en;
    rdfs:comment "A pawnstore."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/PawnShop>;
    .
schema:PetStore a rdfs:Class;
    rdfs:label "Pet Store"@en;
    rdfs:comment "A pet store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/PetStore>;
    .
schema:ShoeStore a rdfs:Class;
    rdfs:label "Shoe Store"@en;
    rdfs:comment "A shoe store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ShoeStore>;
    .
schema:SportingGoodsStore a rdfs:Class;
    rdfs:label "Sporting Goods Store"@en;
    rdfs:comment "A sporting goods store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/SportingGoodsStore>;
    .
schema:TireShop a rdfs:Class;
    rdfs:label "Tire Shop"@en;
    rdfs:comment "A tire shop."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/TireShop>;
    .
schema:ToyStore a rdfs:Class;
    rdfs:label "Toy Store"@en;
    rdfs:comment "A toystore."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ToyStore>;
    .
schema:WholesaleStore a rdfs:Class;
    rdfs:label "Wholesale Store"@en;
    rdfs:comment "A wholesale store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/WholesaleStore>;
    .
schema:TelevisionStation a rdfs:Class;
    rdfs:label "Television Station"@en;
    rdfs:comment "A television station."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/TelevisionStation>;
    .
schema:TouristInformationCenter a rdfs:Class;
    rdfs:label "Tourist Information Center"@en;
    rdfs:comment "A tourist information center."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/TouristInformationCenter>;
    .
schema:TravelAgency a rdfs:Class;
    rdfs:label "Travel Agency"@en;
    rdfs:comment "A travel agency."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/TravelAgency>;
    .
schema:NGO a rdfs:Class;
    rdfs:label "NGO"@en;
    rdfs:comment "Organization: Non-governmental Organization."@en;
    rdfs:subClassOf schema:Organization;
    rdfs:isDefinedBy <http://schema.org/NGO>;
    .
schema:PerformingGroup a rdfs:Class;
    rdfs:label "Performing Group"@en;
    rdfs:comment "A performance group, such as a band, an orchestra, or a circus."@en;
    rdfs:subClassOf schema:Organization;
    rdfs:isDefinedBy <http://schema.org/PerformingGroup>;
    .
schema:DanceGroup a rdfs:Class;
    rdfs:label "Dance Group"@en;
    rdfs:comment "A dance group—for example, the Alvin Ailey Dance Theater or Riverdance."@en;
    rdfs:subClassOf schema:PerformingGroup;
    rdfs:isDefinedBy <http://schema.org/DanceGroup>;
    .
schema:MusicGroup a rdfs:Class;
    rdfs:label "Music Group"@en;
    rdfs:comment "A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician."@en;
    rdfs:subClassOf schema:PerformingGroup;
    rdfs:isDefinedBy <http://schema.org/MusicGroup>;
    .
schema:TheaterGroup a rdfs:Class;
    rdfs:label "Theater Group"@en;
    rdfs:comment "A theater group or company—for example, the Royal Shakespeare Company or Druid Theatre."@en;
    rdfs:subClassOf schema:PerformingGroup;
    rdfs:isDefinedBy <http://schema.org/TheaterGroup>;
    .
schema:SportsTeam a rdfs:Class;
    rdfs:label "Sports Team"@en;
    rdfs:comment "Organization: Sports team."@en;
    rdfs:subClassOf schema:Organization;
    rdfs:isDefinedBy <http://schema.org/SportsTeam>;
    .
schema:Person a rdfs:Class;
    rdfs:label "Person"@en;
    rdfs:comment "A person (alive, dead, undead, or fictional)."@en;
    rdfs:subClassOf schema:Thing;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:Place a rdfs:Class;
    rdfs:label "Place"@en;
    rdfs:comment "Entities that have a somewhat fixed, physical extension."@en;
    rdfs:subClassOf schema:Thing;
    rdfs:isDefinedBy <http://schema.org/Place>;
    .
schema:AdministrativeArea a rdfs:Class;
    rdfs:label "Administrative Area"@en;
    rdfs:comment "A geographical region under the jurisdiction of a particular government."@en;
    rdfs:subClassOf schema:Place;
    rdfs:isDefinedBy <http://schema.org/AdministrativeArea>;
    .
schema:City a rdfs:Class;
    rdfs:label "City"@en;
    rdfs:comment "A city or town."@en;
    rdfs:subClassOf schema:AdministrativeArea;
    rdfs:isDefinedBy <http://schema.org/City>;
    .
schema:Country a rdfs:Class;
    rdfs:label "Country"@en;
    rdfs:comment "A country."@en;
    rdfs:subClassOf schema:AdministrativeArea;
    rdfs:isDefinedBy <http://schema.org/Country>;
    .
schema:State a rdfs:Class;
    rdfs:label "State"@en;
    rdfs:comment "A state or province."@en;
    rdfs:subClassOf schema:AdministrativeArea;
    rdfs:isDefinedBy <http://schema.org/State>;
    .
schema:CivicStructure a rdfs:Class;
    rdfs:label "Civic Structure"@en;
    rdfs:comment "A public structure, such as a town hall or concert hall."@en;
    rdfs:subClassOf schema:Place;
    rdfs:isDefinedBy <http://schema.org/CivicStructure>;
    .
schema:Airport a rdfs:Class;
    rdfs:label "Airport"@en;
    rdfs:comment "An airport."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/Airport>;
    .
schema:Aquarium a rdfs:Class;
    rdfs:label "Aquarium"@en;
    rdfs:comment "Aquarium."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/Aquarium>;
    .
schema:Beach a rdfs:Class;
    rdfs:label "Beach"@en;
    rdfs:comment "Beach."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/Beach>;
    .
schema:BusStation a rdfs:Class;
    rdfs:label "Bus Station"@en;
    rdfs:comment "A bus station."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/BusStation>;
    .
schema:BusStop a rdfs:Class;
    rdfs:label "Bus Stop"@en;
    rdfs:comment "A bus stop."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/BusStop>;
    .
schema:Campground a rdfs:Class;
    rdfs:label "Campground"@en;
    rdfs:comment "A campground."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/Campground>;
    .
schema:Cemetery a rdfs:Class;
    rdfs:label "Cemetery"@en;
    rdfs:comment "A graveyard."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/Cemetery>;
    .
schema:Crematorium a rdfs:Class;
    rdfs:label "Crematorium"@en;
    rdfs:comment "A crematorium."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/Crematorium>;
    .
schema:EventVenue a rdfs:Class;
    rdfs:label "Event Venue"@en;
    rdfs:comment "An event venue."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/EventVenue>;
    .
schema:GovernmentBuilding a rdfs:Class;
    rdfs:label "Government Building"@en;
    rdfs:comment "A government building."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/GovernmentBuilding>;
    .
schema:CityHall a rdfs:Class;
    rdfs:label "City Hall"@en;
    rdfs:comment "A city hall."@en;
    rdfs:subClassOf schema:GovernmentBuilding;
    rdfs:isDefinedBy <http://schema.org/CityHall>;
    .
schema:Courthouse a rdfs:Class;
    rdfs:label "Courthouse"@en;
    rdfs:comment "A courthouse."@en;
    rdfs:subClassOf schema:GovernmentBuilding;
    rdfs:isDefinedBy <http://schema.org/Courthouse>;
    .
schema:DefenceEstablishment a rdfs:Class;
    rdfs:label "Defence Establishment"@en;
    rdfs:comment "A defence establishment, such as an army or navy base."@en;
    rdfs:subClassOf schema:GovernmentBuilding;
    rdfs:isDefinedBy <http://schema.org/DefenceEstablishment>;
    .
schema:Embassy a rdfs:Class;
    rdfs:label "Embassy"@en;
    rdfs:comment "An embassy."@en;
    rdfs:subClassOf schema:GovernmentBuilding;
    rdfs:isDefinedBy <http://schema.org/Embassy>;
    .
schema:LegislativeBuilding a rdfs:Class;
    rdfs:label "Legislative Building"@en;
    rdfs:comment "A legislative building—for example, the state capitol."@en;
    rdfs:subClassOf schema:GovernmentBuilding;
    rdfs:isDefinedBy <http://schema.org/LegislativeBuilding>;
    .
schema:Museum a rdfs:Class;
    rdfs:label "Museum"@en;
    rdfs:comment "A museum."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/Museum>;
    .
schema:MusicVenue a rdfs:Class;
    rdfs:label "Music Venue"@en;
    rdfs:comment "A music venue."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/MusicVenue>;
    .
schema:Park a rdfs:Class;
    rdfs:label "Park"@en;
    rdfs:comment "A park."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/Park>;
    .
schema:ParkingFacility a rdfs:Class;
    rdfs:label "Parking Facility"@en;
    rdfs:comment "A parking lot or other parking facility."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/ParkingFacility>;
    .
schema:PerformingArtsTheater a rdfs:Class;
    rdfs:label "Performing Arts Theater"@en;
    rdfs:comment "A theatre or other performing art center."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/PerformingArtsTheater>;
    .
schema:PlaceOfWorship a rdfs:Class;
    rdfs:label "Place of Worship"@en;
    rdfs:comment "Place of worship, such as a church, synagogue, or mosque."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/PlaceOfWorship>;
    .
schema:BuddhistTemple a rdfs:Class;
    rdfs:label "Buddhist Temple"@en;
    rdfs:comment "A Buddhist temple."@en;
    rdfs:subClassOf schema:PlaceOfWorship;
    rdfs:isDefinedBy <http://schema.org/BuddhistTemple>;
    .
schema:CatholicChurch a rdfs:Class;
    rdfs:label "Catholic Church"@en;
    rdfs:comment "A Catholic church."@en;
    rdfs:subClassOf schema:PlaceOfWorship;
    rdfs:isDefinedBy <http://schema.org/CatholicChurch>;
    .
schema:Church a rdfs:Class;
    rdfs:label "Church"@en;
    rdfs:comment "A church."@en;
    rdfs:subClassOf schema:PlaceOfWorship;
    rdfs:isDefinedBy <http://schema.org/Church>;
    .
schema:HinduTemple a rdfs:Class;
    rdfs:label "Hindu Temple"@en;
    rdfs:comment "A Hindu temple."@en;
    rdfs:subClassOf schema:PlaceOfWorship;
    rdfs:isDefinedBy <http://schema.org/HinduTemple>;
    .
schema:Mosque a rdfs:Class;
    rdfs:label "Mosque"@en;
    rdfs:comment "A mosque."@en;
    rdfs:subClassOf schema:PlaceOfWorship;
    rdfs:isDefinedBy <http://schema.org/Mosque>;
    .
schema:Synagogue a rdfs:Class;
    rdfs:label "Synagogue"@en;
    rdfs:comment "A synagogue."@en;
    rdfs:subClassOf schema:PlaceOfWorship;
    rdfs:isDefinedBy <http://schema.org/Synagogue>;
    .
schema:Playground a rdfs:Class;
    rdfs:label "Playground"@en;
    rdfs:comment "A playground."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/Playground>;
    .
schema:RVPark a rdfs:Class;
    rdfs:label "RV Park"@en;
    rdfs:comment "An RV park."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/RVPark>;
    .
schema:SubwayStation a rdfs:Class;
    rdfs:label "Subway Station"@en;
    rdfs:comment "A subway station."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/SubwayStation>;
    .
schema:TaxiStand a rdfs:Class;
    rdfs:label "Taxi Stand"@en;
    rdfs:comment "A taxi stand."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/TaxiStand>;
    .
schema:TrainStation a rdfs:Class;
    rdfs:label "Train Station"@en;
    rdfs:comment "A train station."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/TrainStation>;
    .
schema:Zoo a rdfs:Class;
    rdfs:label "Zoo"@en;
    rdfs:comment "A zoo."@en;
    rdfs:subClassOf schema:CivicStructure;
    rdfs:isDefinedBy <http://schema.org/Zoo>;
    .
schema:Landform a rdfs:Class;
    rdfs:label "Landform"@en;
    rdfs:comment "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."@en;
    rdfs:subClassOf schema:Place;
    rdfs:isDefinedBy <http://schema.org/Landform>;
    .
schema:BodyOfWater a rdfs:Class;
    rdfs:label "Body of Water"@en;
    rdfs:comment "A body of water, such as a sea, ocean, or lake."@en;
    rdfs:subClassOf schema:Landform;
    rdfs:isDefinedBy <http://schema.org/BodyOfWater>;
    .
schema:Canal a rdfs:Class;
    rdfs:label "Canal"@en;
    rdfs:comment "A canal, like the Panama Canal"@en;
    rdfs:subClassOf schema:BodyOfWater;
    rdfs:isDefinedBy <http://schema.org/Canal>;
    .
schema:LakeBodyOfWater a rdfs:Class;
    rdfs:label "Lake Body of Water"@en;
    rdfs:comment "A lake (for example, Lake Pontrachain)."@en;
    rdfs:subClassOf schema:BodyOfWater;
    rdfs:isDefinedBy <http://schema.org/LakeBodyOfWater>;
    .
schema:OceanBodyOfWater a rdfs:Class;
    rdfs:label "Ocean Body of Water"@en;
    rdfs:comment "An ocean (for example, the Pacific)."@en;
    rdfs:subClassOf schema:BodyOfWater;
    rdfs:isDefinedBy <http://schema.org/OceanBodyOfWater>;
    .
schema:Pond a rdfs:Class;
    rdfs:label "Pond"@en;
    rdfs:comment "A pond"@en;
    rdfs:subClassOf schema:BodyOfWater;
    rdfs:isDefinedBy <http://schema.org/Pond>;
    .
schema:Reservoir a rdfs:Class;
    rdfs:label "Reservoir"@en;
    rdfs:comment "A reservoir, like the Lake Kariba reservoir."@en;
    rdfs:subClassOf schema:BodyOfWater;
    rdfs:isDefinedBy <http://schema.org/Reservoir>;
    .
schema:RiverBodyOfWater a rdfs:Class;
    rdfs:label "River Body of Water"@en;
    rdfs:comment "A river (for example, the broad majestic Shannon)."@en;
    rdfs:subClassOf schema:BodyOfWater;
    rdfs:isDefinedBy <http://schema.org/RiverBodyOfWater>;
    .
schema:SeaBodyOfWater a rdfs:Class;
    rdfs:label "Sea Body of Water"@en;
    rdfs:comment "A sea (for example, the Caspian sea)."@en;
    rdfs:subClassOf schema:BodyOfWater;
    rdfs:isDefinedBy <http://schema.org/SeaBodyOfWater>;
    .
schema:Waterfall a rdfs:Class;
    rdfs:label "Waterfall"@en;
    rdfs:comment "A waterfall, like Niagara"@en;
    rdfs:subClassOf schema:BodyOfWater;
    rdfs:isDefinedBy <http://schema.org/Waterfall>;
    .
schema:Continent a rdfs:Class;
    rdfs:label "Continent"@en;
    rdfs:comment "One of the continents (for example, Europe or Africa)."@en;
    rdfs:subClassOf schema:Landform;
    rdfs:isDefinedBy <http://schema.org/Continent>;
    .
schema:Mountain a rdfs:Class;
    rdfs:label "Mountain"@en;
    rdfs:comment "A mountain, like Mount Whitney or Mount Everest"@en;
    rdfs:subClassOf schema:Landform;
    rdfs:isDefinedBy <http://schema.org/Mountain>;
    .
schema:Volcano a rdfs:Class;
    rdfs:label "Volcano"@en;
    rdfs:comment "A volcano, like Fuji san"@en;
    rdfs:subClassOf schema:Landform;
    rdfs:isDefinedBy <http://schema.org/Volcano>;
    .
schema:LandmarksOrHistoricalBuildings a rdfs:Class;
    rdfs:label "Landmarks or Historical Buildings"@en;
    rdfs:comment "An historical landmark or building."@en;
    rdfs:subClassOf schema:Place;
    rdfs:isDefinedBy <http://schema.org/LandmarksOrHistoricalBuildings>;
    .
schema:AnimalShelter a rdfs:Class;
    rdfs:label "Animal Shelter"@en;
    rdfs:comment "Animal shelter."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/AnimalShelter>;
    .
schema:AutomotiveBusiness a rdfs:Class;
    rdfs:label "Automotive Business"@en;
    rdfs:comment "Car repair, sales, or parts."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/AutomotiveBusiness>;
    .
schema:AutoBodyShop a rdfs:Class;
    rdfs:label "Auto Body Shop"@en;
    rdfs:comment "Auto body shop."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/AutoBodyShop>;
    .
schema:AutoDealer a rdfs:Class;
    rdfs:label "Auto Dealer"@en;
    rdfs:comment "An car dealership."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/AutoDealer>;
    .
schema:AutoRental a rdfs:Class;
    rdfs:label "Auto Rental"@en;
    rdfs:comment "A car rental business."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/AutoRental>;
    .
schema:AutoRepair a rdfs:Class;
    rdfs:label "Auto Repair"@en;
    rdfs:comment "Car repair business."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/AutoRepair>;
    .
schema:AutoWash a rdfs:Class;
    rdfs:label "Auto Wash"@en;
    rdfs:comment "A car wash business."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/AutoWash>;
    .
schema:GasStation a rdfs:Class;
    rdfs:label "Gas Station"@en;
    rdfs:comment "A gas station."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/GasStation>;
    .
schema:MotorcycleDealer a rdfs:Class;
    rdfs:label "Motorcycle Dealer"@en;
    rdfs:comment "A motorcycle dealer."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/MotorcycleDealer>;
    .
schema:MotorcycleRepair a rdfs:Class;
    rdfs:label "Motorcycle Repair"@en;
    rdfs:comment "A motorcycle repair shop."@en;
    rdfs:subClassOf schema:AutomotiveBusiness;
    rdfs:isDefinedBy <http://schema.org/MotorcycleRepair>;
    .
schema:ChildCare a rdfs:Class;
    rdfs:label "Child Care"@en;
    rdfs:comment "A Childcare center."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/ChildCare>;
    .
schema:DryCleaningOrLaundry a rdfs:Class;
    rdfs:label "Dry Cleaning or Laundry"@en;
    rdfs:comment "A dry-cleaning business."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/DryCleaningOrLaundry>;
    .
schema:EmergencyService a rdfs:Class;
    rdfs:label "Emergency Service"@en;
    rdfs:comment "An emergency service, such as a fire station or ER."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/EmergencyService>;
    .
schema:EmploymentAgency a rdfs:Class;
    rdfs:label "Employment Agency"@en;
    rdfs:comment "An employment agency."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/EmploymentAgency>;
    .
schema:EntertainmentBusiness a rdfs:Class;
    rdfs:label "Entertainment Business"@en;
    rdfs:comment "A business providing entertainment."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/EntertainmentBusiness>;
    .
schema:AdultEntertainment a rdfs:Class;
    rdfs:label "Adult Entertainment"@en;
    rdfs:comment "An adult entertainment establishment."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/AdultEntertainment>;
    .
schema:AmusementPark a rdfs:Class;
    rdfs:label "Amusement Park"@en;
    rdfs:comment "An amusement park."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/AmusementPark>;
    .
schema:ArtGallery a rdfs:Class;
    rdfs:label "Art Gallery"@en;
    rdfs:comment "An art gallery."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/ArtGallery>;
    .
schema:Casino a rdfs:Class;
    rdfs:label "Casino"@en;
    rdfs:comment "A casino."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/Casino>;
    .
schema:ComedyClub a rdfs:Class;
    rdfs:label "Comedy Club"@en;
    rdfs:comment "A comedy club."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/ComedyClub>;
    .
schema:NightClub a rdfs:Class;
    rdfs:label "Night Club"@en;
    rdfs:comment "A nightclub or discotheque."@en;
    rdfs:subClassOf schema:EntertainmentBusiness;
    rdfs:isDefinedBy <http://schema.org/NightClub>;
    .
schema:FinancialService a rdfs:Class;
    rdfs:label "Financial Service"@en;
    rdfs:comment "Financial services business."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/FinancialService>;
    .
schema:AutomatedTeller a rdfs:Class;
    rdfs:label "Automated Teller"@en;
    rdfs:comment "ATM/cash machine."@en;
    rdfs:subClassOf schema:FinancialService;
    rdfs:isDefinedBy <http://schema.org/AutomatedTeller>;
    .
schema:BankOrCreditUnion a rdfs:Class;
    rdfs:label "Bank or Credit Union"@en;
    rdfs:comment "Bank or credit union."@en;
    rdfs:subClassOf schema:FinancialService;
    rdfs:isDefinedBy <http://schema.org/BankOrCreditUnion>;
    .
schema:InsuranceAgency a rdfs:Class;
    rdfs:label "Insurance Agency"@en;
    rdfs:comment "Insurance agency."@en;
    rdfs:subClassOf schema:FinancialService;
    rdfs:isDefinedBy <http://schema.org/InsuranceAgency>;
    .
schema:FoodEstablishment a rdfs:Class;
    rdfs:label "Food Establishment"@en;
    rdfs:comment "A food-related business."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/FoodEstablishment>;
    .
schema:Bakery a rdfs:Class;
    rdfs:label "Bakery"@en;
    rdfs:comment "A bakery."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/Bakery>;
    .
schema:BarOrPub a rdfs:Class;
    rdfs:label "Bar or Pub"@en;
    rdfs:comment "A bar or pub."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/BarOrPub>;
    .
schema:Brewery a rdfs:Class;
    rdfs:label "Brewery"@en;
    rdfs:comment "Brewery."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/Brewery>;
    .
schema:CafeOrCoffeeShop a rdfs:Class;
    rdfs:label "Cafe or Coffee Shop"@en;
    rdfs:comment "A cafe or coffee shop."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/CafeOrCoffeeShop>;
    .
schema:FastFoodRestaurant a rdfs:Class;
    rdfs:label "Fast Food Restaurant"@en;
    rdfs:comment "A fast-food restaurant."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/FastFoodRestaurant>;
    .
schema:IceCreamShop a rdfs:Class;
    rdfs:label "Ice Cream Shop"@en;
    rdfs:comment "An ice cream shop"@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/IceCreamShop>;
    .
schema:Restaurant a rdfs:Class;
    rdfs:label "Restaurant"@en;
    rdfs:comment "A restaurant."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/Restaurant>;
    .
schema:Winery a rdfs:Class;
    rdfs:label "Winery"@en;
    rdfs:comment "A winery."@en;
    rdfs:subClassOf schema:FoodEstablishment;
    rdfs:isDefinedBy <http://schema.org/Winery>;
    .
schema:GovernmentOffice a rdfs:Class;
    rdfs:label "Government Office"@en;
    rdfs:comment "A government office—for example, an IRS or DMV office."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/GovernmentOffice>;
    .
schema:PostOffice a rdfs:Class;
    rdfs:label "Post Office"@en;
    rdfs:comment "A post office."@en;
    rdfs:subClassOf schema:GovernmentOffice;
    rdfs:isDefinedBy <http://schema.org/PostOffice>;
    .
schema:HealthAndBeautyBusiness a rdfs:Class;
    rdfs:label "Health And Beauty Business"@en;
    rdfs:comment "Health and beauty."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/HealthAndBeautyBusiness>;
    .
schema:BeautySalon a rdfs:Class;
    rdfs:label "Beauty Salon"@en;
    rdfs:comment "Beauty salon."@en;
    rdfs:subClassOf schema:HealthAndBeautyBusiness;
    rdfs:isDefinedBy <http://schema.org/BeautySalon>;
    .
schema:DaySpa a rdfs:Class;
    rdfs:label "Day Spa"@en;
    rdfs:comment "A day spa."@en;
    rdfs:subClassOf schema:HealthAndBeautyBusiness;
    rdfs:isDefinedBy <http://schema.org/DaySpa>;
    .
schema:HairSalon a rdfs:Class;
    rdfs:label "Hair Salon"@en;
    rdfs:comment "A hair salon."@en;
    rdfs:subClassOf schema:HealthAndBeautyBusiness;
    rdfs:isDefinedBy <http://schema.org/HairSalon>;
    .
schema:NailSalon a rdfs:Class;
    rdfs:label "Nail Salon"@en;
    rdfs:comment "A nail salon."@en;
    rdfs:subClassOf schema:HealthAndBeautyBusiness;
    rdfs:isDefinedBy <http://schema.org/NailSalon>;
    .
schema:TattooParlor a rdfs:Class;
    rdfs:label "Tattoo Parlor"@en;
    rdfs:comment "A tattoo parlor."@en;
    rdfs:subClassOf schema:HealthAndBeautyBusiness;
    rdfs:isDefinedBy <http://schema.org/TattooParlor>;
    .
schema:HomeAndConstructionBusiness a rdfs:Class;
    rdfs:label "Home And Construction Business"@en;
    rdfs:comment "A construction business."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/HomeAndConstructionBusiness>;
    .
schema:HVACBusiness a rdfs:Class;
    rdfs:label "HVAC Business"@en;
    rdfs:comment "An HVAC service."@en;
    rdfs:subClassOf schema:HomeAndConstructionBusiness;
    rdfs:isDefinedBy <http://schema.org/HVACBusiness>;
    .
schema:MovingCompany a rdfs:Class;
    rdfs:label "Moving Company"@en;
    rdfs:comment "A moving company."@en;
    rdfs:subClassOf schema:HomeAndConstructionBusiness;
    rdfs:isDefinedBy <http://schema.org/MovingCompany>;
    .
schema:InternetCafe a rdfs:Class;
    rdfs:label "Internet Cafe"@en;
    rdfs:comment "An internet cafe."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/InternetCafe>;
    .
schema:Library a rdfs:Class;
    rdfs:label "Library"@en;
    rdfs:comment "A library."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/Library>;
    .
schema:LodgingBusiness a rdfs:Class;
    rdfs:label "Lodging Business"@en;
    rdfs:comment "A lodging business, such as a motel, hotel, or inn."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/LodgingBusiness>;
    .
schema:BedAndBreakfast a rdfs:Class;
    rdfs:label "Bed And Breakfast"@en;
    rdfs:comment "Bed and breakfast."@en;
    rdfs:subClassOf schema:LodgingBusiness;
    rdfs:isDefinedBy <http://schema.org/BedAndBreakfast>;
    .
schema:Hostel a rdfs:Class;
    rdfs:label "Hostel"@en;
    rdfs:comment "A hostel."@en;
    rdfs:subClassOf schema:LodgingBusiness;
    rdfs:isDefinedBy <http://schema.org/Hostel>;
    .
schema:Hotel a rdfs:Class;
    rdfs:label "Hotel"@en;
    rdfs:comment "A hotel."@en;
    rdfs:subClassOf schema:LodgingBusiness;
    rdfs:isDefinedBy <http://schema.org/Hotel>;
    .
schema:Motel a rdfs:Class;
    rdfs:label "Motel"@en;
    rdfs:comment "A motel."@en;
    rdfs:subClassOf schema:LodgingBusiness;
    rdfs:isDefinedBy <http://schema.org/Motel>;
    .
schema:MedicalOrganization a rdfs:Class;
    rdfs:label "Medical Organization"@en;
    rdfs:comment "A medical organization, such as a doctor's office or clinic."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/MedicalOrganization>;
    .
schema:DiagnosticLab a rdfs:Class;
    rdfs:label "Diagnostic Lab"@en;
    rdfs:comment "A medical laboratory that offers on-site or off-site diagnostic services."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/DiagnosticLab>;
    .
schema:MedicalClinic a rdfs:Class;
    rdfs:label "Medical Clinic"@en;
    rdfs:comment "A medical clinic."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/MedicalClinic>;
    .
schema:Optician a rdfs:Class;
    rdfs:label "Optician"@en;
    rdfs:comment "An optician's store."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/Optician>;
    .
schema:Pharmacy a rdfs:Class;
    rdfs:label "Pharmacy"@en;
    rdfs:comment "A pharmacy or drugstore."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/Pharmacy>;
    .
schema:Physician a rdfs:Class;
    rdfs:label "Physician"@en;
    rdfs:comment "A doctor's office."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/Physician>;
    .
schema:VeterinaryCare a rdfs:Class;
    rdfs:label "Veterinary Care"@en;
    rdfs:comment "A vet's office."@en;
    rdfs:subClassOf schema:MedicalOrganization;
    rdfs:isDefinedBy <http://schema.org/VeterinaryCare>;
    .
schema:ProfessionalService a rdfs:Class;
    rdfs:label "Professional Service"@en;
    rdfs:comment "Provider of professional services."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/ProfessionalService>;
    .
schema:Attorney a rdfs:Class;
    rdfs:label "Attorney"@en;
    rdfs:comment "Professional service: Attorney."@en;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:isDefinedBy <http://schema.org/Attorney>;
    .
schema:Notary a rdfs:Class;
    rdfs:label "Notary"@en;
    rdfs:comment "A notary."@en;
    rdfs:subClassOf schema:ProfessionalService;
    rdfs:isDefinedBy <http://schema.org/Notary>;
    .
schema:RadioStation a rdfs:Class;
    rdfs:label "Radio Station"@en;
    rdfs:comment "A radio station."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/RadioStation>;
    .
schema:RealEstateAgent a rdfs:Class;
    rdfs:label "Real Estate Agent"@en;
    rdfs:comment "A real-estate agent."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/RealEstateAgent>;
    .
schema:RecyclingCenter a rdfs:Class;
    rdfs:label "Recycling Center"@en;
    rdfs:comment "A recycling center."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/RecyclingCenter>;
    .
schema:SelfStorage a rdfs:Class;
    rdfs:label "Self Storage"@en;
    rdfs:comment "Self-storage facility."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/SelfStorage>;
    .
schema:ShoppingCenter a rdfs:Class;
    rdfs:label "Shopping Center"@en;
    rdfs:comment "A shopping center or mall."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/ShoppingCenter>;
    .
schema:SportsActivityLocation a rdfs:Class;
    rdfs:label "Sports Activity Location"@en;
    rdfs:comment "A sports location, such as a playing field."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/SportsActivityLocation>;
    .
schema:BowlingAlley a rdfs:Class;
    rdfs:label "Bowling Alley"@en;
    rdfs:comment "A bowling alley."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/BowlingAlley>;
    .
schema:ExerciseGym a rdfs:Class;
    rdfs:label "Exercise Gym"@en;
    rdfs:comment "A gym."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/ExerciseGym>;
    .
schema:GolfCourse a rdfs:Class;
    rdfs:label "Golf Course"@en;
    rdfs:comment "A golf course."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/GolfCourse>;
    .
schema:PublicSwimmingPool a rdfs:Class;
    rdfs:label "Public Swimming Pool"@en;
    rdfs:comment "A public swimming pool."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/PublicSwimmingPool>;
    .
schema:SkiResort a rdfs:Class;
    rdfs:label "Ski Resort"@en;
    rdfs:comment "A ski resort."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/SkiResort>;
    .
schema:SportsClub a rdfs:Class;
    rdfs:label "Sports Club"@en;
    rdfs:comment "A sports club."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/SportsClub>;
    .
schema:TennisComplex a rdfs:Class;
    rdfs:label "Tennis Complex"@en;
    rdfs:comment "A tennis complex."@en;
    rdfs:subClassOf schema:SportsActivityLocation;
    rdfs:isDefinedBy <http://schema.org/TennisComplex>;
    .
schema:Store a rdfs:Class;
    rdfs:label "Store"@en;
    rdfs:comment "A retail good store."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/Store>;
    .
schema:BikeStore a rdfs:Class;
    rdfs:label "Bike Store"@en;
    rdfs:comment "A bike store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/BikeStore>;
    .
schema:BookStore a rdfs:Class;
    rdfs:label "Book Store"@en;
    rdfs:comment "A bookstore."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/BookStore>;
    .
schema:ClothingStore a rdfs:Class;
    rdfs:label "Clothing Store"@en;
    rdfs:comment "A clothing store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ClothingStore>;
    .
schema:ComputerStore a rdfs:Class;
    rdfs:label "Computer Store"@en;
    rdfs:comment "A computer store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ComputerStore>;
    .
schema:ConvenienceStore a rdfs:Class;
    rdfs:label "Convenience Store"@en;
    rdfs:comment "A convenience store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ConvenienceStore>;
    .
schema:DepartmentStore a rdfs:Class;
    rdfs:label "Department Store"@en;
    rdfs:comment "A department store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/DepartmentStore>;
    .
schema:ElectronicsStore a rdfs:Class;
    rdfs:label "Electronics Store"@en;
    rdfs:comment "An electronics store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ElectronicsStore>;
    .
schema:Florist a rdfs:Class;
    rdfs:label "Florist"@en;
    rdfs:comment "A florist."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/Florist>;
    .
schema:FurnitureStore a rdfs:Class;
    rdfs:label "Furniture Store"@en;
    rdfs:comment "A furniture store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/FurnitureStore>;
    .
schema:GardenStore a rdfs:Class;
    rdfs:label "Garden Store"@en;
    rdfs:comment "A garden store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/GardenStore>;
    .
schema:GroceryStore a rdfs:Class;
    rdfs:label "Grocery Store"@en;
    rdfs:comment "A grocery store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/GroceryStore>;
    .
schema:HardwareStore a rdfs:Class;
    rdfs:label "Hardware Store"@en;
    rdfs:comment "A hardware store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/HardwareStore>;
    .
schema:HobbyShop a rdfs:Class;
    rdfs:label "Hobby Shop"@en;
    rdfs:comment "A hobby store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/HobbyShop>;
    .
schema:HomeGoodsStore a rdfs:Class;
    rdfs:label "Home Goods Store"@en;
    rdfs:comment "A home goods store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/HomeGoodsStore>;
    .
schema:JewelryStore a rdfs:Class;
    rdfs:label "Jewelry Store"@en;
    rdfs:comment "A jewelry store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/JewelryStore>;
    .
schema:LiquorStore a rdfs:Class;
    rdfs:label "Liquor Store"@en;
    rdfs:comment "A liquor store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/LiquorStore>;
    .
schema:MensClothingStore a rdfs:Class;
    rdfs:label "Mens Clothing Store"@en;
    rdfs:comment "A men's clothing store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/MensClothingStore>;
    .
schema:MobilePhoneStore a rdfs:Class;
    rdfs:label "Mobile Phone Store"@en;
    rdfs:comment "A mobile-phone store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/MobilePhoneStore>;
    .
schema:MovieRentalStore a rdfs:Class;
    rdfs:label "Movie Rental Store"@en;
    rdfs:comment "A movie rental store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/MovieRentalStore>;
    .
schema:MusicStore a rdfs:Class;
    rdfs:label "Music Store"@en;
    rdfs:comment "A music store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/MusicStore>;
    .
schema:OfficeEquipmentStore a rdfs:Class;
    rdfs:label "Office Equipment Store"@en;
    rdfs:comment "An office equipment store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/OfficeEquipmentStore>;
    .
schema:OutletStore a rdfs:Class;
    rdfs:label "Outlet Store"@en;
    rdfs:comment "An outlet store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/OutletStore>;
    .
schema:PawnShop a rdfs:Class;
    rdfs:label "Pawn Shop"@en;
    rdfs:comment "A pawnstore."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/PawnShop>;
    .
schema:PetStore a rdfs:Class;
    rdfs:label "Pet Store"@en;
    rdfs:comment "A pet store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/PetStore>;
    .
schema:ShoeStore a rdfs:Class;
    rdfs:label "Shoe Store"@en;
    rdfs:comment "A shoe store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ShoeStore>;
    .
schema:SportingGoodsStore a rdfs:Class;
    rdfs:label "Sporting Goods Store"@en;
    rdfs:comment "A sporting goods store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/SportingGoodsStore>;
    .
schema:TireShop a rdfs:Class;
    rdfs:label "Tire Shop"@en;
    rdfs:comment "A tire shop."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/TireShop>;
    .
schema:ToyStore a rdfs:Class;
    rdfs:label "Toy Store"@en;
    rdfs:comment "A toystore."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/ToyStore>;
    .
schema:WholesaleStore a rdfs:Class;
    rdfs:label "Wholesale Store"@en;
    rdfs:comment "A wholesale store."@en;
    rdfs:subClassOf schema:Store;
    rdfs:isDefinedBy <http://schema.org/WholesaleStore>;
    .
schema:TelevisionStation a rdfs:Class;
    rdfs:label "Television Station"@en;
    rdfs:comment "A television station."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/TelevisionStation>;
    .
schema:TouristInformationCenter a rdfs:Class;
    rdfs:label "Tourist Information Center"@en;
    rdfs:comment "A tourist information center."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/TouristInformationCenter>;
    .
schema:TravelAgency a rdfs:Class;
    rdfs:label "Travel Agency"@en;
    rdfs:comment "A travel agency."@en;
    rdfs:subClassOf schema:LocalBusiness;
    rdfs:isDefinedBy <http://schema.org/TravelAgency>;
    .
schema:Residence a rdfs:Class;
    rdfs:label "Residence"@en;
    rdfs:comment "The place where a person lives."@en;
    rdfs:subClassOf schema:Place;
    rdfs:isDefinedBy <http://schema.org/Residence>;
    .
schema:ApartmentComplex a rdfs:Class;
    rdfs:label "Apartment Complex"@en;
    rdfs:comment "Residence type: Apartment complex."@en;
    rdfs:subClassOf schema:Residence;
    rdfs:isDefinedBy <http://schema.org/ApartmentComplex>;
    .
schema:GatedResidenceCommunity a rdfs:Class;
    rdfs:label "Gated Residence Community"@en;
    rdfs:comment "Residence type: Gated community."@en;
    rdfs:subClassOf schema:Residence;
    rdfs:isDefinedBy <http://schema.org/GatedResidenceCommunity>;
    .
schema:SingleFamilyResidence a rdfs:Class;
    rdfs:label "Single Family Residence"@en;
    rdfs:comment "Residence type: Single-family home."@en;
    rdfs:subClassOf schema:Residence;
    rdfs:isDefinedBy <http://schema.org/SingleFamilyResidence>;
    .
schema:TouristAttraction a rdfs:Class;
    rdfs:label "Tourist Attraction"@en;
    rdfs:comment "A tourist attraction."@en;
    rdfs:subClassOf schema:Place;
    rdfs:isDefinedBy <http://schema.org/TouristAttraction>;
    .
schema:Product a rdfs:Class;
    rdfs:label "Product"@en;
    rdfs:comment "A product is anything that is made available for sale—for example, a pair of shoes, a concert ticket, or a car. Commodity services, like haircuts, can also be represented using this type."@en;
    rdfs:subClassOf schema:Thing;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:IndividualProduct a rdfs:Class;
    rdfs:label "Individual Product"@en;
    rdfs:comment "A single, identifiable product instance (e.g. a laptop with a particular serial number)."@en;
    rdfs:subClassOf schema:Product;
    rdfs:isDefinedBy <http://schema.org/IndividualProduct>;
    .
schema:ProductModel a rdfs:Class;
    rdfs:label "Product Model"@en;
    rdfs:comment "A datasheet or vendor specification of a product (in the sense of a prototypical description)."@en;
    rdfs:subClassOf schema:Product;
    rdfs:isDefinedBy <http://schema.org/ProductModel>;
    .
schema:SomeProducts a rdfs:Class;
    rdfs:label "Some Products"@en;
    rdfs:comment "A placeholder for multiple similar products of the same kind."@en;
    rdfs:subClassOf schema:Product;
    rdfs:isDefinedBy <http://schema.org/SomeProducts>;
    .
schema:Property a rdfs:Class;
    rdfs:label "Property"@en;
    rdfs:comment "A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property."@en;
    rdfs:subClassOf schema:Thing;
    rdfs:isDefinedBy <http://schema.org/Property>;
    .
schema:about a rdf:Property;
    rdfs:label "About"@en;
    rdfs:comment "The subject matter of the content."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:Thing;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:acceptedPaymentMethod a rdf:Property;
    rdfs:label "Accepted Payment Method"@en;
    rdfs:comment "The payment method(s) accepted by seller for this offer."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:PaymentMethod;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:acceptsReservations a rdf:Property;
    rdfs:label "Accepts Reservations"@en;
    rdfs:comment "Either Yes/No, or a URL at which reservations can be made."@en;
    rdfs:domain schema:FoodEstablishment;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string rdfs:Resource) ];
    rdfs:isDefinedBy <http://schema.org/FoodEstablishment>;
    .
schema:accountablePerson a rdf:Property;
    rdfs:label "Accountable Person"@en;
    rdfs:comment "Specifies the Person that is legally accountable for the CreativeWork."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:acquiredFrom a rdf:Property;
    rdfs:label "Acquired From"@en;
    rdfs:comment "The organization or person from which the product was acquired."@en;
    rdfs:domain schema:OwnershipInfo;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/OwnershipInfo>;
    .
schema:action a rdf:Property;
    rdfs:label "Action"@en;
    rdfs:comment "The movement the muscle generates."@en;
    rdfs:domain schema:Muscle;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Muscle>;
    .
schema:activeIngredient a rdf:Property;
    rdfs:label "Active Ingredient"@en;
    rdfs:comment "An active ingredient, typically chemical compounds and/or biologic substances."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:DrugStrength schema:DietarySupplement schema:Drug) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DrugStrength>;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:activityDuration a rdf:Property;
    rdfs:label "Activity Duration"@en;
    rdfs:comment "Length of time to engage in the activity."@en;
    rdfs:domain schema:ExercisePlan;
    rdfs:range schema:Duration;
    rdfs:isDefinedBy <http://schema.org/ExercisePlan>;
    .
schema:activityFrequency a rdf:Property;
    rdfs:label "Activity Frequency"@en;
    rdfs:comment "How often one should engage in the activity."@en;
    rdfs:domain schema:ExercisePlan;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/ExercisePlan>;
    .
schema:actor a rdf:Property;
    rdfs:label "Actor"@en;
    rdfs:comment "A cast member of the movie, TV series, season, or episode, or video."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVEpisode schema:Movie schema:TVSeries) ];
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/TVEpisode>;
    rdfs:isDefinedBy <http://schema.org/Movie>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:actors a rdf:Property;
    rdfs:label "Actors"@en;
    rdfs:comment "A cast member of the movie, TV series, season, or episode, or video. (legacy spelling; see singular form, actor)"@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVEpisode schema:Movie schema:TVSeries) ];
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/TVEpisode>;
    rdfs:isDefinedBy <http://schema.org/Movie>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:addOn a rdf:Property;
    rdfs:label "Add On"@en;
    rdfs:comment "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)."@en;
    rdfs:domain schema:Offer;
    rdfs:range schema:Offer;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:additionalName a rdf:Property;
    rdfs:label "Additional Name"@en;
    rdfs:comment "An additional name for a Person, can be used for a middle name."@en;
    rdfs:domain schema:Person;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:additionalType a rdf:Property;
    rdfs:label "Additional Type"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:Thing;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/Thing>;
    .
schema:additionalVariable a rdf:Property;
    rdfs:label "Additional Variable"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:ExercisePlan;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/ExercisePlan>;
    .
schema:address a rdf:Property;
    rdfs:label "Address"@en;
    rdfs:comment "Physical address of the item."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Place schema:Person) ];
    rdfs:range schema:PostalAddress;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:addressCountry a rdf:Property;
    rdfs:label "Address Country"@en;
    rdfs:comment "The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code."@en;
    rdfs:domain schema:PostalAddress;
    rdfs:range schema:Country;
    rdfs:isDefinedBy <http://schema.org/PostalAddress>;
    .
schema:addressLocality a rdf:Property;
    rdfs:label "Address Locality"@en;
    rdfs:comment "The locality. For example, Mountain View."@en;
    rdfs:domain schema:PostalAddress;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/PostalAddress>;
    .
schema:addressRegion a rdf:Property;
    rdfs:label "Address Region"@en;
    rdfs:comment "The region. For example, CA."@en;
    rdfs:domain schema:PostalAddress;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/PostalAddress>;
    .
schema:administrationRoute a rdf:Property;
    rdfs:label "Administration Route"@en;
    rdfs:comment "A route by which this drug may be administered, e.g. 'oral'."@en;
    rdfs:domain schema:Drug;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:advanceBookingRequirement a rdf:Property;
    rdfs:label "Advance Booking Requirement"@en;
    rdfs:comment "The amount of time that is required between accepting the offer and the actual usage of the resource or service."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:QuantitativeValue;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:adverseOutcome a rdf:Property;
    rdfs:label "Adverse Outcome"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MedicalDevice schema:MedicalTherapy) ];
    rdfs:range schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalDevice>;
    rdfs:isDefinedBy <http://schema.org/MedicalTherapy>;
    .
schema:affectedBy a rdf:Property;
    rdfs:label "Affected by"@en;
    rdfs:comment "Drugs that affect the test's results."@en;
    rdfs:domain schema:MedicalTest;
    rdfs:range schema:Drug;
    rdfs:isDefinedBy <http://schema.org/MedicalTest>;
    .
schema:affiliation a rdf:Property;
    rdfs:label "Affiliation"@en;
    rdfs:comment "An organization that this person is affiliated with. For example, a school/university, a club, or a team."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Organization;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:aggregateRating a rdf:Property;
    rdfs:label "Aggregate Rating"@en;
    rdfs:comment "The overall rating, based on a collection of reviews or ratings, of the item."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Product schema:CreativeWork schema:Place schema:Offer) ];
    rdfs:range schema:AggregateRating;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:album a rdf:Property;
    rdfs:label "Album"@en;
    rdfs:comment "A music album."@en;
    rdfs:domain schema:MusicGroup;
    rdfs:range schema:MusicAlbum;
    rdfs:isDefinedBy <http://schema.org/MusicGroup>;
    .
schema:albums a rdf:Property;
    rdfs:label "Albums"@en;
    rdfs:comment "A collection of music albums (legacy spelling; see singular form, album)."@en;
    rdfs:domain schema:MusicGroup;
    rdfs:range schema:MusicAlbum;
    rdfs:isDefinedBy <http://schema.org/MusicGroup>;
    .
schema:alcoholWarning a rdf:Property;
    rdfs:label "Alcohol Warning"@en;
    rdfs:comment "Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug."@en;
    rdfs:domain schema:Drug;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:algorithm a rdf:Property;
    rdfs:label "Algorithm"@en;
    rdfs:comment "The algorithm or rules to follow to compute the score."@en;
    rdfs:domain schema:MedicalRiskScore;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalRiskScore>;
    .
schema:alignmentType a rdf:Property;
    rdfs:label "Alignment Type"@en;
    rdfs:comment "A category of alignment between the learning resource and the framework node. Recommended values include: 'assesses', 'teaches', 'requires', 'textComplexity', 'readingLevel', 'educationalSubject', and 'educationLevel'."@en;
    rdfs:domain schema:AlignmentObject;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/AlignmentObject>;
    .
schema:alternateName a rdf:Property;
    rdfs:label "Alternate Name"@en;
    rdfs:comment "Any alternate name for this medical entity."@en;
    rdfs:domain schema:MedicalEntity;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalEntity>;
    .
schema:alternativeHeadline a rdf:Property;
    rdfs:label "Alternative Headline"@en;
    rdfs:comment "A secondary title of the CreativeWork."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:alumni a rdf:Property;
    rdfs:label "Alumni"@en;
    rdfs:comment "Alumni of educational organization."@en;
    rdfs:domain schema:EducationalOrganization;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/EducationalOrganization>;
    .
schema:alumniOf a rdf:Property;
    rdfs:label "Alumni of"@en;
    rdfs:comment "An educational organizations that the person is an alumni of."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:EducationalOrganization;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:amountOfThisGood a rdf:Property;
    rdfs:label "Amount of This Good"@en;
    rdfs:comment "The quantity of the goods included in the offer."@en;
    rdfs:domain schema:TypeAndQuantityNode;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/TypeAndQuantityNode>;
    .
schema:antagonist a rdf:Property;
    rdfs:label "Antagonist"@en;
    rdfs:comment "The muscle whose action counteracts the specified muscle."@en;
    rdfs:domain schema:Muscle;
    rdfs:range schema:Muscle;
    rdfs:isDefinedBy <http://schema.org/Muscle>;
    .
schema:applicableLocation a rdf:Property;
    rdfs:label "Applicable Location"@en;
    rdfs:comment "The location in which the status applies."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:DrugLegalStatus schema:DrugCost) ];
    rdfs:range schema:AdministrativeArea;
    rdfs:isDefinedBy <http://schema.org/DrugLegalStatus>;
    rdfs:isDefinedBy <http://schema.org/DrugCost>;
    .
schema:applicationCategory a rdf:Property;
    rdfs:label "Application Category"@en;
    rdfs:comment "Type of software application, e.g. \"Game, Multimedia\"."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string rdfs:Resource) ];
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:applicationSubCategory a rdf:Property;
    rdfs:label "Application Sub Category"@en;
    rdfs:comment "Subcategory of the application, e.g. \"Arcade Game\"."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string rdfs:Resource) ];
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:applicationSuite a rdf:Property;
    rdfs:label "Application Suite"@en;
    rdfs:comment "The name of the application suite to which the application belongs (e.g. Excel belongs to Office)"@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:appliesToDeliveryMethod a rdf:Property;
    rdfs:label "Applies to Delivery Method"@en;
    rdfs:comment "The delivery method(s) to which the delivery charge or payment charge specification applies."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:DeliveryChargeSpecification schema:PaymentChargeSpecification) ];
    rdfs:range schema:DeliveryMethod;
    rdfs:isDefinedBy <http://schema.org/DeliveryChargeSpecification>;
    rdfs:isDefinedBy <http://schema.org/PaymentChargeSpecification>;
    .
schema:appliesToPaymentMethod a rdf:Property;
    rdfs:label "Applies to Payment Method"@en;
    rdfs:comment "The payment method(s) to which the payment charge specification applies."@en;
    rdfs:domain schema:PaymentChargeSpecification;
    rdfs:range schema:PaymentMethod;
    rdfs:isDefinedBy <http://schema.org/PaymentChargeSpecification>;
    .
schema:arterialBranch a rdf:Property;
    rdfs:label "Arterial Branch"@en;
    rdfs:comment "The branches that comprise the arterial structure."@en;
    rdfs:domain schema:Artery;
    rdfs:range schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Artery>;
    .
schema:articleBody a rdf:Property;
    rdfs:label "Article Body"@en;
    rdfs:comment "The actual body of the article."@en;
    rdfs:domain schema:Article;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Article>;
    .
schema:articleSection a rdf:Property;
    rdfs:label "Article Section"@en;
    rdfs:comment "Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc."@en;
    rdfs:domain schema:Article;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Article>;
    .
schema:aspect a rdf:Property;
    rdfs:label "Aspect"@en;
    rdfs:comment "An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc."@en;
    rdfs:domain schema:MedicalWebPage;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalWebPage>;
    .
schema:assembly a rdf:Property;
    rdfs:label "Assembly"@en;
    rdfs:comment "Library file name e.g., mscorlib.dll, system.web.dll"@en;
    rdfs:domain schema:APIReference;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/APIReference>;
    .
schema:assemblyVersion a rdf:Property;
    rdfs:label "Assembly Version"@en;
    rdfs:comment "Associated product/technology version. e.g., .NET Framework 4.5"@en;
    rdfs:domain schema:APIReference;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/APIReference>;
    .
schema:associatedAnatomy a rdf:Property;
    rdfs:label "Associated Anatomy"@en;
    rdfs:comment "The anatomy of the underlying organ system or structures associated with this entity."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MedicalCondition schema:PhysicalActivity) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:AnatomicalSystem schema:SuperficialAnatomy schema:AnatomicalStructure) ];
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    rdfs:isDefinedBy <http://schema.org/PhysicalActivity>;
    .
schema:associatedArticle a rdf:Property;
    rdfs:label "Associated Article"@en;
    rdfs:comment "A NewsArticle associated with the Media Object."@en;
    rdfs:domain schema:MediaObject;
    rdfs:range schema:NewsArticle;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:associatedMedia a rdf:Property;
    rdfs:label "Associated Media"@en;
    rdfs:comment "The media objects that encode this creative work. This property is a synonym for encodings."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:MediaObject;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:associatedPathophysiology a rdf:Property;
    rdfs:label "Associated Pathophysiology"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:SuperficialAnatomy schema:AnatomicalSystem schema:AnatomicalStructure) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/SuperficialAnatomy>;
    rdfs:isDefinedBy <http://schema.org/AnatomicalSystem>;
    rdfs:isDefinedBy <http://schema.org/AnatomicalStructure>;
    .
schema:attendee a rdf:Property;
    rdfs:label "Attendee"@en;
    rdfs:comment "A person or organization attending the event."@en;
    rdfs:domain schema:Event;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/Event>;
    .
schema:attendees a rdf:Property;
    rdfs:label "Attendees"@en;
    rdfs:comment "A person attending the event (legacy spelling; see singular form, attendee)."@en;
    rdfs:domain schema:Event;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/Event>;
    .
schema:audience a rdf:Property;
    rdfs:label "Audience"@en;
    rdfs:comment "The intended audience of the item, i.e. the group for whom the item was created."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Product schema:CreativeWork) ];
    rdfs:range schema:Audience;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:audio a rdf:Property;
    rdfs:label "Audio"@en;
    rdfs:comment "An embedded audio object."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:AudioObject;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:author a rdf:Property;
    rdfs:label "Author"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:availability a rdf:Property;
    rdfs:label "Availability"@en;
    rdfs:comment "The availability of this item—for example In stock, Out of stock, Pre-order, etc."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:ItemAvailability;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:availabilityEnds a rdf:Property;
    rdfs:label "Availability Ends"@en;
    rdfs:comment "The end of the availability of the product or service included in the offer."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:DateTime;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:availabilityStarts a rdf:Property;
    rdfs:label "Availability Starts"@en;
    rdfs:comment "The beginning of the availability of the product or service included in the offer."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:DateTime;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:availableAtOrFrom a rdf:Property;
    rdfs:label "Available At or From"@en;
    rdfs:comment "The place(s) from which the offer can be obtained (e.g. store locations)."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:Place;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:availableDeliveryMethod a rdf:Property;
    rdfs:label "Available Delivery Method"@en;
    rdfs:comment "The delivery method(s) available for this offer."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:DeliveryMethod;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:availableIn a rdf:Property;
    rdfs:label "Available in"@en;
    rdfs:comment "The location in which the strength is available."@en;
    rdfs:domain schema:DrugStrength;
    rdfs:range schema:AdministrativeArea;
    rdfs:isDefinedBy <http://schema.org/DrugStrength>;
    .
schema:availableService a rdf:Property;
    rdfs:label "Available Service"@en;
    rdfs:comment "A medical service available from this provider."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Physician schema:Hospital schema:MedicalClinic) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:MedicalTest schema:MedicalProcedure schema:MedicalTherapy) ];
    rdfs:isDefinedBy <http://schema.org/Physician>;
    rdfs:isDefinedBy <http://schema.org/Hospital>;
    rdfs:isDefinedBy <http://schema.org/MedicalClinic>;
    .
schema:availableStrength a rdf:Property;
    rdfs:label "Available Strength"@en;
    rdfs:comment "An available dosage strength for the drug."@en;
    rdfs:domain schema:Drug;
    rdfs:range schema:DrugStrength;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:availableTest a rdf:Property;
    rdfs:label "Available Test"@en;
    rdfs:comment "A diagnostic test or procedure offered by this lab."@en;
    rdfs:domain schema:DiagnosticLab;
    rdfs:range schema:MedicalTest;
    rdfs:isDefinedBy <http://schema.org/DiagnosticLab>;
    .
schema:award a rdf:Property;
    rdfs:label "Award"@en;
    rdfs:comment "An award won by this person or for this creative work."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Person schema:CreativeWork) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Person>;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:awards a rdf:Property;
    rdfs:label "Awards"@en;
    rdfs:comment "Awards won by this person or for this creative work. (legacy spelling; see singular form, award)"@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Person schema:CreativeWork) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Person>;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:background a rdf:Property;
    rdfs:label "Background"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:DietarySupplement;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    .
schema:baseSalary a rdf:Property;
    rdfs:label "Base Salary"@en;
    rdfs:comment "The base salary of the job."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:benefits a rdf:Property;
    rdfs:label "Benefits"@en;
    rdfs:comment "Description of benefits associated with the job."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:bestRating a rdf:Property;
    rdfs:label "Best Rating"@en;
    rdfs:comment "The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed."@en;
    rdfs:domain schema:Rating;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:decimal xsd:string) ];
    rdfs:isDefinedBy <http://schema.org/Rating>;
    .
schema:billingIncrement a rdf:Property;
    rdfs:label "Billing Increment"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:UnitPriceSpecification;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/UnitPriceSpecification>;
    .
schema:biomechnicalClass a rdf:Property;
    rdfs:label "Biomechnical Class"@en;
    rdfs:comment "The biomechanical properties of the bone."@en;
    rdfs:domain schema:Joint;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Joint>;
    .
schema:birthDate a rdf:Property;
    rdfs:label "Birth Date"@en;
    rdfs:comment "Date of birth."@en;
    rdfs:domain schema:Person;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:bitrate a rdf:Property;
    rdfs:label "Bitrate"@en;
    rdfs:comment "The bitrate of the media object."@en;
    rdfs:domain schema:MediaObject;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:blogPost a rdf:Property;
    rdfs:label "Blog Post"@en;
    rdfs:comment "A posting that is part of this blog."@en;
    rdfs:domain schema:Blog;
    rdfs:range schema:BlogPosting;
    rdfs:isDefinedBy <http://schema.org/Blog>;
    .
schema:blogPosts a rdf:Property;
    rdfs:label "Blog Posts"@en;
    rdfs:comment "The postings that are part of this blog (legacy spelling; see singular form, blogPost)."@en;
    rdfs:domain schema:Blog;
    rdfs:range schema:BlogPosting;
    rdfs:isDefinedBy <http://schema.org/Blog>;
    .
schema:bloodSupply a rdf:Property;
    rdfs:label "Blood Supply"@en;
    rdfs:comment "The blood vessel that carries blood from the heart to the muscle."@en;
    rdfs:domain schema:Muscle;
    rdfs:range schema:Vessel;
    rdfs:isDefinedBy <http://schema.org/Muscle>;
    .
schema:bodyLocation a rdf:Property;
    rdfs:label "Body Location"@en;
    rdfs:comment "Location in the body of the anatomical structure."@en;
    rdfs:domain schema:AnatomicalStructure;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/AnatomicalStructure>;
    .
schema:bookEdition a rdf:Property;
    rdfs:label "Book Edition"@en;
    rdfs:comment "The edition of the book."@en;
    rdfs:domain schema:Book;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Book>;
    .
schema:bookFormat a rdf:Property;
    rdfs:label "Book Format"@en;
    rdfs:comment "The format of the book."@en;
    rdfs:domain schema:Book;
    rdfs:range schema:BookFormatType;
    rdfs:isDefinedBy <http://schema.org/Book>;
    .
schema:box a rdf:Property;
    rdfs:label "Box"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:GeoShape;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/GeoShape>;
    .
schema:branch a rdf:Property;
    rdfs:label "Branch"@en;
    rdfs:comment "The branches that delineate from the nerve bundle."@en;
    rdfs:domain schema:Nerve;
    rdfs:range [ a owl:Class; owl:unionOf (schema:AnatomicalStructure schema:Nerve) ];
    rdfs:isDefinedBy <http://schema.org/Nerve>;
    .
schema:branchOf a rdf:Property;
    rdfs:label "Branch of"@en;
    rdfs:comment "The larger organization that this local business is a branch of, if any."@en;
    rdfs:domain schema:LocalBusiness;
    rdfs:range schema:Organization;
    rdfs:isDefinedBy <http://schema.org/LocalBusiness>;
    .
schema:brand a rdf:Property;
    rdfs:label "Brand"@en;
    rdfs:comment "The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Product schema:Person) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Brand) ];
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:breadcrumb a rdf:Property;
    rdfs:label "Breadcrumb"@en;
    rdfs:comment "A set of links that can help a user understand and navigate a website hierarchy."@en;
    rdfs:domain schema:WebPage;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/WebPage>;
    .
schema:breastfeedingWarning a rdf:Property;
    rdfs:label "Breastfeeding Warning"@en;
    rdfs:comment "Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers."@en;
    rdfs:domain schema:Drug;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:browserRequirements a rdf:Property;
    rdfs:label "Browser Requirements"@en;
    rdfs:comment "Specifies browser requirements in human-readable text. For example,\"requires HTML5 support\"."@en;
    rdfs:domain schema:WebApplication;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/WebApplication>;
    .
schema:businessFunction a rdf:Property;
    rdfs:label "Business Function"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:TypeAndQuantityNode schema:Demand) ];
    rdfs:range schema:BusinessFunction;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/TypeAndQuantityNode>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:byArtist a rdf:Property;
    rdfs:label "By Artist"@en;
    rdfs:comment "The artist that performed this album or recording."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MusicAlbum schema:MusicRecording) ];
    rdfs:range schema:MusicGroup;
    rdfs:isDefinedBy <http://schema.org/MusicAlbum>;
    rdfs:isDefinedBy <http://schema.org/MusicRecording>;
    .
schema:calories a rdf:Property;
    rdfs:label "Calories"@en;
    rdfs:comment "The number of calories"@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range schema:Energy;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:caption a rdf:Property;
    rdfs:label "Caption"@en;
    rdfs:comment "The caption for this object."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:VideoObject schema:ImageObject) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/VideoObject>;
    rdfs:isDefinedBy <http://schema.org/ImageObject>;
    .
schema:carbohydrateContent a rdf:Property;
    rdfs:label "Carbohydrate Content"@en;
    rdfs:comment "The number of grams of carbohydrates."@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range schema:Mass;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:carrierRequirements a rdf:Property;
    rdfs:label "Carrier Requirements"@en;
    rdfs:comment "Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network)."@en;
    rdfs:domain schema:MobileApplication;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MobileApplication>;
    .
schema:catalog a rdf:Property;
    rdfs:label "Catalog"@en;
    rdfs:comment "A data catalog which contains a dataset."@en;
    rdfs:domain schema:Dataset;
    rdfs:range schema:DataCatalog;
    rdfs:isDefinedBy <http://schema.org/Dataset>;
    .
schema:category a rdf:Property;
    rdfs:label "Category"@en;
    rdfs:comment "A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:PhysicalActivity schema:Offer) ];
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string schema:PhysicalActivityCategory schema:Thing) ];
    rdfs:isDefinedBy <http://schema.org/PhysicalActivity>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:cause a rdf:Property;
    rdfs:label "Cause"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MedicalCondition schema:MedicalSignOrSymptom) ];
    rdfs:range schema:MedicalCause;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    rdfs:isDefinedBy <http://schema.org/MedicalSignOrSymptom>;
    .
schema:causeOf a rdf:Property;
    rdfs:label "Cause of"@en;
    rdfs:comment "The condition, complication, symptom, sign, etc. caused."@en;
    rdfs:domain schema:MedicalCause;
    rdfs:range schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalCause>;
    .
schema:childMaxAge a rdf:Property;
    rdfs:label "Child Max Age"@en;
    rdfs:comment "Maximal age of the child"@en;
    rdfs:domain schema:ParentAudience;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/ParentAudience>;
    .
schema:childMinAge a rdf:Property;
    rdfs:label "Child Min Age"@en;
    rdfs:comment "Minimal age of the child"@en;
    rdfs:domain schema:ParentAudience;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/ParentAudience>;
    .
schema:children a rdf:Property;
    rdfs:label "Children"@en;
    rdfs:comment "A child of the person."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:cholesterolContent a rdf:Property;
    rdfs:label "Cholesterol Content"@en;
    rdfs:comment "The number of milligrams of cholesterol."@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range schema:Mass;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:circle a rdf:Property;
    rdfs:label "Circle"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:GeoShape;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/GeoShape>;
    .
schema:citation a rdf:Property;
    rdfs:label "Citation"@en;
    rdfs:comment "A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. NOTE: Candidate for promotion to ScholarlyArticle."@en;
    rdfs:domain schema:MedicalScholarlyArticle;
    rdfs:range [ a owl:Class; owl:unionOf (schema:CreativeWork xsd:string) ];
    rdfs:isDefinedBy <http://schema.org/MedicalScholarlyArticle>;
    .
schema:clincalPharmacology a rdf:Property;
    rdfs:label "Clincal Pharmacology"@en;
    rdfs:comment "Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD)."@en;
    rdfs:domain schema:Drug;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:closes a rdf:Property;
    rdfs:label "Closes"@en;
    rdfs:comment "The closing hour of the place or service on the given day(s) of the week."@en;
    rdfs:domain schema:OpeningHoursSpecification;
    rdfs:range schema:Time;
    rdfs:isDefinedBy <http://schema.org/OpeningHoursSpecification>;
    .
schema:code a rdf:Property;
    rdfs:label "Code"@en;
    rdfs:comment "A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc."@en;
    rdfs:domain schema:MedicalEntity;
    rdfs:range schema:MedicalCode;
    rdfs:isDefinedBy <http://schema.org/MedicalEntity>;
    .
schema:codeRepository a rdf:Property;
    rdfs:label "Code Repository"@en;
    rdfs:comment "Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex)"@en;
    rdfs:domain schema:Code;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/Code>;
    .
schema:codeValue a rdf:Property;
    rdfs:label "Code Value"@en;
    rdfs:comment "The actual code."@en;
    rdfs:domain schema:MedicalCode;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalCode>;
    .
schema:codingSystem a rdf:Property;
    rdfs:label "Coding System"@en;
    rdfs:comment "The coding system, e.g. 'ICD-10'."@en;
    rdfs:domain schema:MedicalCode;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalCode>;
    .
schema:colleague a rdf:Property;
    rdfs:label "Colleague"@en;
    rdfs:comment "A colleague of the person."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:colleagues a rdf:Property;
    rdfs:label "Colleagues"@en;
    rdfs:comment "A colleague of the person (legacy spelling; see singular form, colleague)."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:color a rdf:Property;
    rdfs:label "Color"@en;
    rdfs:comment "The color of the product."@en;
    rdfs:domain schema:Product;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:comment a rdf:Property;
    rdfs:label "Comment"@en;
    rdfs:comment "Comments, typically from users, on this CreativeWork."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:UserComments;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:commentText a rdf:Property;
    rdfs:label "Comment Text"@en;
    rdfs:comment "The text of the UserComment."@en;
    rdfs:domain schema:UserComments;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/UserComments>;
    .
schema:commentTime a rdf:Property;
    rdfs:label "Comment Time"@en;
    rdfs:comment "The time at which the UserComment was made."@en;
    rdfs:domain schema:UserComments;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/UserComments>;
    .
schema:comprisedOf a rdf:Property;
    rdfs:label "Comprised of"@en;
    rdfs:comment "The underlying anatomical structures, such as organs, that comprise the anatomical system."@en;
    rdfs:domain schema:AnatomicalSystem;
    rdfs:range [ a owl:Class; owl:unionOf (schema:AnatomicalStructure schema:AnatomicalSystem) ];
    rdfs:isDefinedBy <http://schema.org/AnatomicalSystem>;
    .
schema:connectedTo a rdf:Property;
    rdfs:label "Connected to"@en;
    rdfs:comment "Other anatomical structures to which this structure is connected."@en;
    rdfs:domain schema:AnatomicalStructure;
    rdfs:range schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/AnatomicalStructure>;
    .
schema:contactPoint a rdf:Property;
    rdfs:label "Contact Point"@en;
    rdfs:comment "A contact point for a person or organization."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:range schema:ContactPoint;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:contactPoints a rdf:Property;
    rdfs:label "Contact Points"@en;
    rdfs:comment "A contact point for a person or organization (legacy spelling; see singular form, contactPoint)."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:range schema:ContactPoint;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:contactType a rdf:Property;
    rdfs:label "Contact Type"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:ContactPoint;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/ContactPoint>;
    .
schema:containedIn a rdf:Property;
    rdfs:label "Contained in"@en;
    rdfs:comment "The basic containment relation between places."@en;
    rdfs:domain schema:Place;
    rdfs:range schema:Place;
    rdfs:isDefinedBy <http://schema.org/Place>;
    .
schema:contentLocation a rdf:Property;
    rdfs:label "Content Location"@en;
    rdfs:comment "The location of the content."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:Place;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:contentRating a rdf:Property;
    rdfs:label "Content Rating"@en;
    rdfs:comment "Official rating of a piece of content—for example,'MPAA PG-13'."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:contentSize a rdf:Property;
    rdfs:label "Content Size"@en;
    rdfs:comment "File size in (mega/kilo) bytes."@en;
    rdfs:domain schema:MediaObject;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:contentUrl a rdf:Property;
    rdfs:label "Content Url"@en;
    rdfs:comment "Actual bytes of the media object, for example the image file or video file. (previous spelling: contentURL)"@en;
    rdfs:domain schema:MediaObject;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:contraindication a rdf:Property;
    rdfs:label "Contraindication"@en;
    rdfs:comment "A contraindication for this therapy."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MedicalDevice schema:MedicalTherapy) ];
    rdfs:range schema:MedicalContraindication;
    rdfs:isDefinedBy <http://schema.org/MedicalDevice>;
    rdfs:isDefinedBy <http://schema.org/MedicalTherapy>;
    .
schema:contributor a rdf:Property;
    rdfs:label "Contributor"@en;
    rdfs:comment "A secondary contributor to the CreativeWork."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:cookTime a rdf:Property;
    rdfs:label "Cook Time"@en;
    rdfs:comment "The time it takes to actually cook the dish, in ISO 8601 duration format."@en;
    rdfs:domain schema:Recipe;
    rdfs:range schema:Duration;
    rdfs:isDefinedBy <http://schema.org/Recipe>;
    .
schema:cookingMethod a rdf:Property;
    rdfs:label "Cooking Method"@en;
    rdfs:comment "The method of cooking, such as Frying, Steaming, ..."@en;
    rdfs:domain schema:Recipe;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Recipe>;
    .
schema:copyrightHolder a rdf:Property;
    rdfs:label "Copyright Holder"@en;
    rdfs:comment "The party holding the legal copyright to the CreativeWork."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:copyrightYear a rdf:Property;
    rdfs:label "Copyright Year"@en;
    rdfs:comment "The year during which the claimed copyright for the CreativeWork was first asserted."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:cost a rdf:Property;
    rdfs:label "Cost"@en;
    rdfs:comment "Cost per unit of the drug, as reported by the source being tagged."@en;
    rdfs:domain schema:Drug;
    rdfs:range schema:DrugCost;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:costCategory a rdf:Property;
    rdfs:label "Cost Category"@en;
    rdfs:comment "The category of cost, such as wholesale, retail, reimbursement cap, etc."@en;
    rdfs:domain schema:DrugCost;
    rdfs:range schema:DrugCostCategory;
    rdfs:isDefinedBy <http://schema.org/DrugCost>;
    .
schema:costCurrency a rdf:Property;
    rdfs:label "Cost Currency"@en;
    rdfs:comment "The currency (in 3-letter ISO 4217 format) of the drug cost."@en;
    rdfs:domain schema:DrugCost;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DrugCost>;
    .
schema:costOrigin a rdf:Property;
    rdfs:label "Cost Origin"@en;
    rdfs:comment "Additional details to capture the origin of the cost data. For example, 'Medicare Part B'."@en;
    rdfs:domain schema:DrugCost;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DrugCost>;
    .
schema:costPerUnit a rdf:Property;
    rdfs:label "Cost Per Unit"@en;
    rdfs:comment "The cost per unit of the drug."@en;
    rdfs:domain schema:DrugCost;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:decimal xsd:string) ];
    rdfs:isDefinedBy <http://schema.org/DrugCost>;
    .
schema:countriesNotSupported a rdf:Property;
    rdfs:label "Countries Not Supported"@en;
    rdfs:comment "Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:countriesSupported a rdf:Property;
    rdfs:label "Countries Supported"@en;
    rdfs:comment "Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:creator a rdf:Property;
    rdfs:label "Creator"@en;
    rdfs:comment "The creator/author of this CreativeWork or UserComments. This is the same as the Author property for CreativeWork."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:UserComments schema:CreativeWork) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/UserComments>;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:currenciesAccepted a rdf:Property;
    rdfs:label "Currencies Accepted"@en;
    rdfs:comment "The currency accepted (in ISO 4217 currency format)."@en;
    rdfs:domain schema:LocalBusiness;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/LocalBusiness>;
    .
schema:dataset a rdf:Property;
    rdfs:label "Dataset"@en;
    rdfs:comment "A dataset contained in a catalog."@en;
    rdfs:domain schema:DataCatalog;
    rdfs:range schema:Dataset;
    rdfs:isDefinedBy <http://schema.org/DataCatalog>;
    .
schema:dateCreated a rdf:Property;
    rdfs:label "Date Created"@en;
    rdfs:comment "The date on which the CreativeWork was created."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:dateModified a rdf:Property;
    rdfs:label "Date Modified"@en;
    rdfs:comment "The date on which the CreativeWork was most recently modified."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:datePosted a rdf:Property;
    rdfs:label "Date Posted"@en;
    rdfs:comment "Publication date for the job posting."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:datePublished a rdf:Property;
    rdfs:label "Date Published"@en;
    rdfs:comment "Date of first broadcast/publication."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:dateline a rdf:Property;
    rdfs:label "Dateline"@en;
    rdfs:comment "The location where the NewsArticle was produced."@en;
    rdfs:domain schema:NewsArticle;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/NewsArticle>;
    .
schema:dayOfWeek a rdf:Property;
    rdfs:label "Day of Week"@en;
    rdfs:comment "The day of the week for which these opening hours are valid."@en;
    rdfs:domain schema:OpeningHoursSpecification;
    rdfs:range schema:DayOfWeek;
    rdfs:isDefinedBy <http://schema.org/OpeningHoursSpecification>;
    .
schema:deathDate a rdf:Property;
    rdfs:label "Death Date"@en;
    rdfs:comment "Date of death."@en;
    rdfs:domain schema:Person;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:deliveryLeadTime a rdf:Property;
    rdfs:label "Delivery Lead Time"@en;
    rdfs:comment "The typical delay between the receipt of the order and the goods leaving the warehouse."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:QuantitativeValue;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:dependencies a rdf:Property;
    rdfs:label "Dependencies"@en;
    rdfs:comment "Prerequisites needed to fulfill steps in article."@en;
    rdfs:domain schema:TechArticle;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/TechArticle>;
    .
schema:depth a rdf:Property;
    rdfs:label "Depth"@en;
    rdfs:comment "The depth of the product."@en;
    rdfs:domain schema:Product;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Distance schema:QuantitativeValue) ];
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:description a rdf:Property;
    rdfs:label "Description"@en;
    rdfs:comment "A short description of the item."@en;
    rdfs:domain schema:Thing;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Thing>;
    .
schema:device a rdf:Property;
    rdfs:label "Device"@en;
    rdfs:comment "Device required to run the application. Used in cases where a specific make/model is required to run the application."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:diagnosis a rdf:Property;
    rdfs:label "Diagnosis"@en;
    rdfs:comment "One or more alternative conditions considered in the differential diagnosis process."@en;
    rdfs:domain schema:DDxElement;
    rdfs:range schema:MedicalCondition;
    rdfs:isDefinedBy <http://schema.org/DDxElement>;
    .
schema:diagram a rdf:Property;
    rdfs:label "Diagram"@en;
    rdfs:comment "An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures."@en;
    rdfs:domain schema:AnatomicalStructure;
    rdfs:range schema:ImageObject;
    rdfs:isDefinedBy <http://schema.org/AnatomicalStructure>;
    .
schema:dietFeatures a rdf:Property;
    rdfs:label "Diet Features"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:Diet;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Diet>;
    .
schema:differentialDiagnosis a rdf:Property;
    rdfs:label "Differential Diagnosis"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:MedicalCondition;
    rdfs:range schema:DDxElement;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:director a rdf:Property;
    rdfs:label "Director"@en;
    rdfs:comment "The director of the movie, TV episode, or series."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVEpisode schema:Movie schema:TVSeries) ];
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/TVEpisode>;
    rdfs:isDefinedBy <http://schema.org/Movie>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:discusses a rdf:Property;
    rdfs:label "Discusses"@en;
    rdfs:comment "Specifies the CreativeWork associated with the UserComment."@en;
    rdfs:domain schema:UserComments;
    rdfs:range schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/UserComments>;
    .
schema:discussionUrl a rdf:Property;
    rdfs:label "Discussion Url"@en;
    rdfs:comment "A link to the page containing the comments of the CreativeWork."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:distinguishingSign a rdf:Property;
    rdfs:label "Distinguishing Sign"@en;
    rdfs:comment "One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis."@en;
    rdfs:domain schema:DDxElement;
    rdfs:range schema:MedicalSignOrSymptom;
    rdfs:isDefinedBy <http://schema.org/DDxElement>;
    .
schema:distribution a rdf:Property;
    rdfs:label "Distribution"@en;
    rdfs:comment "A downloadable form of this dataset, at a specific location, in a specific format."@en;
    rdfs:domain schema:Dataset;
    rdfs:range schema:DataDownload;
    rdfs:isDefinedBy <http://schema.org/Dataset>;
    .
schema:domainIncludes a rdf:Property;
    rdfs:label "Domain Includes"@en;
    rdfs:comment "Relates a property to a class that is (one of) the type(s) the property is expected to be used on."@en;
    rdfs:domain schema:Property;
    rdfs:range schema:Class;
    rdfs:isDefinedBy <http://schema.org/Property>;
    .
schema:dosageForm a rdf:Property;
    rdfs:label "Dosage Form"@en;
    rdfs:comment "A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:DietarySupplement schema:Drug) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:doseSchedule a rdf:Property;
    rdfs:label "Dose Schedule"@en;
    rdfs:comment "A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used."@en;
    rdfs:domain schema:Drug;
    rdfs:range schema:DoseSchedule;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:doseUnit a rdf:Property;
    rdfs:label "Dose Unit"@en;
    rdfs:comment "The unit of the dose, e.g. 'mg'."@en;
    rdfs:domain schema:DoseSchedule;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DoseSchedule>;
    .
schema:doseValue a rdf:Property;
    rdfs:label "Dose Value"@en;
    rdfs:comment "The value of the dose, e.g. 500."@en;
    rdfs:domain schema:DoseSchedule;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/DoseSchedule>;
    .
schema:downloadUrl a rdf:Property;
    rdfs:label "Download Url"@en;
    rdfs:comment "If the file can be downloaded, URL to download the binary."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:drainsTo a rdf:Property;
    rdfs:label "Drains to"@en;
    rdfs:comment "The vasculature that the vein drains into."@en;
    rdfs:domain schema:Vein;
    rdfs:range schema:Vessel;
    rdfs:isDefinedBy <http://schema.org/Vein>;
    .
schema:drug a rdf:Property;
    rdfs:label "Drug"@en;
    rdfs:comment "A drug in this drug class."@en;
    rdfs:domain schema:DrugClass;
    rdfs:range schema:Drug;
    rdfs:isDefinedBy <http://schema.org/DrugClass>;
    .
schema:drugClass a rdf:Property;
    rdfs:label "Drug Class"@en;
    rdfs:comment "The class of drug this belongs to (e.g., statins)."@en;
    rdfs:domain schema:Drug;
    rdfs:range schema:DrugClass;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:drugUnit a rdf:Property;
    rdfs:label "Drug Unit"@en;
    rdfs:comment "The unit in which the drug is measured, e.g. '5 mg tablet'."@en;
    rdfs:domain schema:DrugCost;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DrugCost>;
    .
schema:duns a rdf:Property;
    rdfs:label "Duns"@en;
    rdfs:comment "The Dun & Bradstreet DUNS number for identifying an organization or business person."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:duplicateTherapy a rdf:Property;
    rdfs:label "Duplicate Therapy"@en;
    rdfs:comment "A therapy that duplicates or overlaps this one."@en;
    rdfs:domain schema:MedicalTherapy;
    rdfs:range schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/MedicalTherapy>;
    .
schema:duration a rdf:Property;
    rdfs:label "Duration"@en;
    rdfs:comment "The duration of the item (movie, audio recording, event, etc.) in ISO 8601 date format."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Movie schema:MediaObject schema:MusicRecording schema:Event) ];
    rdfs:range schema:Duration;
    rdfs:isDefinedBy <http://schema.org/Movie>;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    rdfs:isDefinedBy <http://schema.org/MusicRecording>;
    rdfs:isDefinedBy <http://schema.org/Event>;
    .
schema:durationOfWarranty a rdf:Property;
    rdfs:label "Duration of Warranty"@en;
    rdfs:comment "The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days."@en;
    rdfs:domain schema:WarrantyPromise;
    rdfs:range schema:QuantitativeValue;
    rdfs:isDefinedBy <http://schema.org/WarrantyPromise>;
    .
schema:editor a rdf:Property;
    rdfs:label "Editor"@en;
    rdfs:comment "Specifies the Person who edited the CreativeWork."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:educationRequirements a rdf:Property;
    rdfs:label "Education Requirements"@en;
    rdfs:comment "Educational background needed for the position."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:educationalAlignment a rdf:Property;
    rdfs:label "Educational Alignment"@en;
    rdfs:comment "An alignment to an established educational framework."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:AlignmentObject;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:educationalFramework a rdf:Property;
    rdfs:label "Educational Framework"@en;
    rdfs:comment "The framework to which the resource being described is aligned."@en;
    rdfs:domain schema:AlignmentObject;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/AlignmentObject>;
    .
schema:educationalRole a rdf:Property;
    rdfs:label "Educational Role"@en;
    rdfs:comment "An educationalRole of an EducationalAudience"@en;
    rdfs:domain schema:EducationalAudience;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/EducationalAudience>;
    .
schema:educationalUse a rdf:Property;
    rdfs:label "Educational Use"@en;
    rdfs:comment "The purpose of a work in the context of education; for example, 'assignment', 'group work'."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:elevation a rdf:Property;
    rdfs:label "Elevation"@en;
    rdfs:comment "The elevation of a location."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:GeoShape schema:GeoCoordinates) ];
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string xsd:decimal) ];
    rdfs:isDefinedBy <http://schema.org/GeoShape>;
    rdfs:isDefinedBy <http://schema.org/GeoCoordinates>;
    .
schema:eligibleCustomerType a rdf:Property;
    rdfs:label "Eligible Customer Type"@en;
    rdfs:comment "The type(s) of customers for which the given offer is valid."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:BusinessEntityType;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:eligibleDuration a rdf:Property;
    rdfs:label "Eligible Duration"@en;
    rdfs:comment "The duration for which the given offer is valid."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:QuantitativeValue;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:eligibleQuantity a rdf:Property;
    rdfs:label "Eligible Quantity"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Demand schema:PriceSpecification schema:Offer) ];
    rdfs:range schema:QuantitativeValue;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    rdfs:isDefinedBy <http://schema.org/PriceSpecification>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:eligibleRegion a rdf:Property;
    rdfs:label "Eligible Region"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:DeliveryChargeSpecification schema:Offer schema:Demand) ];
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string schema:GeoShape) ];
    rdfs:isDefinedBy <http://schema.org/DeliveryChargeSpecification>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:eligibleTransactionVolume a rdf:Property;
    rdfs:label "Eligible Transaction Volume"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Demand schema:PriceSpecification schema:Offer) ];
    rdfs:range schema:PriceSpecification;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    rdfs:isDefinedBy <http://schema.org/PriceSpecification>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:email a rdf:Property;
    rdfs:label "Email"@en;
    rdfs:comment "Email address."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:ContactPoint schema:Person) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/ContactPoint>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:embedUrl a rdf:Property;
    rdfs:label "Embed Url"@en;
    rdfs:comment "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)"@en;
    rdfs:domain schema:MediaObject;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:employee a rdf:Property;
    rdfs:label "Employee"@en;
    rdfs:comment "Someone working for this organization."@en;
    rdfs:domain schema:Organization;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    .
schema:employees a rdf:Property;
    rdfs:label "Employees"@en;
    rdfs:comment "People working for this organization. (legacy spelling; see singular form, employee)"@en;
    rdfs:domain schema:Organization;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    .
schema:employmentType a rdf:Property;
    rdfs:label "Employment Type"@en;
    rdfs:comment "Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship)."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:encodesCreativeWork a rdf:Property;
    rdfs:label "Encodes Creative Work"@en;
    rdfs:comment "The creative work encoded by this media object"@en;
    rdfs:domain schema:MediaObject;
    rdfs:range schema:CreativeWork;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:encoding a rdf:Property;
    rdfs:label "Encoding"@en;
    rdfs:comment "A media object that encode this CreativeWork."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:MediaObject;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:encodingFormat a rdf:Property;
    rdfs:label "Encoding Format"@en;
    rdfs:comment "mp3, mpeg4, etc."@en;
    rdfs:domain schema:MediaObject;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:encodings a rdf:Property;
    rdfs:label "Encodings"@en;
    rdfs:comment "The media objects that encode this creative work (legacy spelling; see singular form, encoding)."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:MediaObject;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:endDate a rdf:Property;
    rdfs:label "End Date"@en;
    rdfs:comment "The end date and time of the event (in ISO 8601 date format)."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVSeason schema:Event schema:TVSeries) ];
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/TVSeason>;
    rdfs:isDefinedBy <http://schema.org/Event>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:endorsers a rdf:Property;
    rdfs:label "Endorsers"@en;
    rdfs:comment "People or organizations that endorse the plan."@en;
    rdfs:domain schema:Diet;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/Diet>;
    .
schema:epidemiology a rdf:Property;
    rdfs:label "Epidemiology"@en;
    rdfs:comment "The characteristics of associated patients, such as age, gender, race etc."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MedicalCondition schema:PhysicalActivity) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    rdfs:isDefinedBy <http://schema.org/PhysicalActivity>;
    .
schema:episode a rdf:Property;
    rdfs:label "Episode"@en;
    rdfs:comment "An episode of a TV series or season."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVSeason schema:TVSeries) ];
    rdfs:range schema:TVEpisode;
    rdfs:isDefinedBy <http://schema.org/TVSeason>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:episodeNumber a rdf:Property;
    rdfs:label "Episode Number"@en;
    rdfs:comment "The episode number."@en;
    rdfs:domain schema:TVEpisode;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/TVEpisode>;
    .
schema:episodes a rdf:Property;
    rdfs:label "Episodes"@en;
    rdfs:comment "The episode of a TV series or season (legacy spelling; see singular form, episode)."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVSeason schema:TVSeries) ];
    rdfs:range schema:TVEpisode;
    rdfs:isDefinedBy <http://schema.org/TVSeason>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:equal a rdf:Property;
    rdfs:label "Equal"@en;
    rdfs:comment "This ordering relation for qualitative values indicates that the subject is equal to the object."@en;
    rdfs:domain schema:QualitativeValue;
    rdfs:range schema:QualitativeValue;
    rdfs:isDefinedBy <http://schema.org/QualitativeValue>;
    .
schema:estimatesRiskOf a rdf:Property;
    rdfs:label "Estimates Risk of"@en;
    rdfs:comment "The condition, complication, or symptom whose risk is being estimated."@en;
    rdfs:domain schema:MedicalRiskEstimator;
    rdfs:range schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalRiskEstimator>;
    .
schema:event a rdf:Property;
    rdfs:label "Event"@en;
    rdfs:comment "Upcoming or past event associated with this place or organization."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Place) ];
    rdfs:range schema:Event;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    .
schema:events a rdf:Property;
    rdfs:label "Events"@en;
    rdfs:comment "Upcoming or past events associated with this place or organization (legacy spelling; see singular form, event)."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Place) ];
    rdfs:range schema:Event;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    .
schema:evidenceLevel a rdf:Property;
    rdfs:label "Evidence Level"@en;
    rdfs:comment "Strength of evidence of the data used to formulate the guideline (enumerated)."@en;
    rdfs:domain schema:MedicalGuideline;
    rdfs:range schema:MedicalEvidenceLevel;
    rdfs:isDefinedBy <http://schema.org/MedicalGuideline>;
    .
schema:evidenceOrigin a rdf:Property;
    rdfs:label "Evidence Origin"@en;
    rdfs:comment "Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc."@en;
    rdfs:domain schema:MedicalGuideline;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalGuideline>;
    .
schema:exerciseType a rdf:Property;
    rdfs:label "Exercise Type"@en;
    rdfs:comment "Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc."@en;
    rdfs:domain schema:ExercisePlan;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/ExercisePlan>;
    .
schema:exifData a rdf:Property;
    rdfs:label "Exif Data"@en;
    rdfs:comment "exif data for this object."@en;
    rdfs:domain schema:ImageObject;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/ImageObject>;
    .
schema:expectedPrognosis a rdf:Property;
    rdfs:label "Expected Prognosis"@en;
    rdfs:comment "The likely outcome in either the short term or long term of the medical condition."@en;
    rdfs:domain schema:MedicalCondition;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:experienceRequirements a rdf:Property;
    rdfs:label "Experience Requirements"@en;
    rdfs:comment "Description of skills and experience needed for the position."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:expertConsiderations a rdf:Property;
    rdfs:label "Expert Considerations"@en;
    rdfs:comment "Medical expert advice related to the plan."@en;
    rdfs:domain schema:Diet;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Diet>;
    .
schema:expires a rdf:Property;
    rdfs:label "Expires"@en;
    rdfs:comment "Date the content expires and is no longer useful or available. Useful for videos."@en;
    rdfs:domain schema:MediaObject;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:familyName a rdf:Property;
    rdfs:label "Family Name"@en;
    rdfs:comment "Family name. In the U.S., the last name of an Person. This can be used along with givenName instead of the Name property."@en;
    rdfs:domain schema:Person;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:fatContent a rdf:Property;
    rdfs:label "Fat Content"@en;
    rdfs:comment "The number of grams of fat."@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range schema:Mass;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:faxNumber a rdf:Property;
    rdfs:label "Fax Number"@en;
    rdfs:comment "The fax number."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:ContactPoint schema:Place schema:Person) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/ContactPoint>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:featureList a rdf:Property;
    rdfs:label "Feature List"@en;
    rdfs:comment "Features or modules provided by this application (and possibly required by other applications)."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string rdfs:Resource) ];
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:fiberContent a rdf:Property;
    rdfs:label "Fiber Content"@en;
    rdfs:comment "The number of grams of fiber."@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range schema:Mass;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:fileFormat a rdf:Property;
    rdfs:label "File Format"@en;
    rdfs:comment "MIME format of the binary (e.g. application/zip)."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:fileSize a rdf:Property;
    rdfs:label "File Size"@en;
    rdfs:comment "Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range xsd:integer;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:follows a rdf:Property;
    rdfs:label "Follows"@en;
    rdfs:comment "The most generic uni-directional social relation."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:followup a rdf:Property;
    rdfs:label "Followup"@en;
    rdfs:comment "Typical or recommended followup care after the procedure is performed."@en;
    rdfs:domain schema:MedicalProcedure;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalProcedure>;
    .
schema:foodWarning a rdf:Property;
    rdfs:label "Food Warning"@en;
    rdfs:comment "Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug."@en;
    rdfs:domain schema:Drug;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:founder a rdf:Property;
    rdfs:label "Founder"@en;
    rdfs:comment "A person who founded this organization."@en;
    rdfs:domain schema:Organization;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    .
schema:founders a rdf:Property;
    rdfs:label "Founders"@en;
    rdfs:comment "A person who founded this organization (legacy spelling; see singular form, founder)."@en;
    rdfs:domain schema:Organization;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    .
schema:foundingDate a rdf:Property;
    rdfs:label "Founding Date"@en;
    rdfs:comment "The date that this organization was founded."@en;
    rdfs:domain schema:Organization;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    .
schema:frequency a rdf:Property;
    rdfs:label "Frequency"@en;
    rdfs:comment "How often the dose is taken, e.g. 'daily'."@en;
    rdfs:domain schema:DoseSchedule;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DoseSchedule>;
    .
schema:function a rdf:Property;
    rdfs:label "Function"@en;
    rdfs:comment "Function of the anatomical structure."@en;
    rdfs:domain schema:AnatomicalStructure;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/AnatomicalStructure>;
    .
schema:functionalClass a rdf:Property;
    rdfs:label "Functional Class"@en;
    rdfs:comment "The degree of mobility the joint allows."@en;
    rdfs:domain schema:Joint;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Joint>;
    .
schema:gender a rdf:Property;
    rdfs:label "Gender"@en;
    rdfs:comment "Gender of the person."@en;
    rdfs:domain schema:Person;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:genre a rdf:Property;
    rdfs:label "Genre"@en;
    rdfs:comment "Genre of the creative work"@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:geo a rdf:Property;
    rdfs:label "Geo"@en;
    rdfs:comment "The geo coordinates of the place."@en;
    rdfs:domain schema:Place;
    rdfs:range [ a owl:Class; owl:unionOf (schema:GeoCoordinates schema:GeoShape) ];
    rdfs:isDefinedBy <http://schema.org/Place>;
    .
schema:givenName a rdf:Property;
    rdfs:label "Given Name"@en;
    rdfs:comment "Given name. In the U.S., the first name of a Person. This can be used along with familyName instead of the Name property."@en;
    rdfs:domain schema:Person;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:globalLocationNumber a rdf:Property;
    rdfs:label "Global Location Number"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Place schema:Person) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:greater a rdf:Property;
    rdfs:label "Greater"@en;
    rdfs:comment "This ordering relation for qualitative values indicates that the subject is greater than the object."@en;
    rdfs:domain schema:QualitativeValue;
    rdfs:range schema:QualitativeValue;
    rdfs:isDefinedBy <http://schema.org/QualitativeValue>;
    .
schema:greaterOrEqual a rdf:Property;
    rdfs:label "Greater or Equal"@en;
    rdfs:comment "This ordering relation for qualitative values indicates that the subject is greater than or equal to the object."@en;
    rdfs:domain schema:QualitativeValue;
    rdfs:range schema:QualitativeValue;
    rdfs:isDefinedBy <http://schema.org/QualitativeValue>;
    .
schema:gtin13 a rdf:Property;
    rdfs:label "Gtin13"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Product schema:Offer schema:Demand) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:gtin14 a rdf:Property;
    rdfs:label "Gtin14"@en;
    rdfs:comment "The GTIN-14 code of the product, or the product to which the offer refers."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Product schema:Offer schema:Demand) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:gtin8 a rdf:Property;
    rdfs:label "Gtin8"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Product schema:Offer schema:Demand) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:guideline a rdf:Property;
    rdfs:label "Guideline"@en;
    rdfs:comment "A medical guideline related to this entity."@en;
    rdfs:domain schema:MedicalEntity;
    rdfs:range schema:MedicalGuideline;
    rdfs:isDefinedBy <http://schema.org/MedicalEntity>;
    .
schema:guidelineDate a rdf:Property;
    rdfs:label "Guideline Date"@en;
    rdfs:comment "Date on which this guideline's recommendation was made."@en;
    rdfs:domain schema:MedicalGuideline;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/MedicalGuideline>;
    .
schema:guidelineSubject a rdf:Property;
    rdfs:label "Guideline Subject"@en;
    rdfs:comment "The medical conditions, treatments, etc. that are the subject of the guideline."@en;
    rdfs:domain schema:MedicalGuideline;
    rdfs:range schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalGuideline>;
    .
schema:hasPOS a rdf:Property;
    rdfs:label "Has POS"@en;
    rdfs:comment "Points-of-Sales operated by the organization or person."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:range schema:Place;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:headline a rdf:Property;
    rdfs:label "Headline"@en;
    rdfs:comment "Headline of the article"@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:healthCondition a rdf:Property;
    rdfs:label "Health Condition"@en;
    rdfs:comment "Expectations for health conditions of target audience"@en;
    rdfs:domain schema:PeopleAudience;
    rdfs:range schema:MedicalCondition;
    rdfs:isDefinedBy <http://schema.org/PeopleAudience>;
    .
schema:height a rdf:Property;
    rdfs:label "Height"@en;
    rdfs:comment "The height of the item."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MediaObject schema:Product) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:Distance schema:QuantitativeValue) ];
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:highPrice a rdf:Property;
    rdfs:label "High Price"@en;
    rdfs:comment "The highest price of all offers available."@en;
    rdfs:domain schema:AggregateOffer;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:decimal xsd:string) ];
    rdfs:isDefinedBy <http://schema.org/AggregateOffer>;
    .
schema:hiringOrganization a rdf:Property;
    rdfs:label "Hiring Organization"@en;
    rdfs:comment "Organization offering the job position."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range schema:Organization;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:homeLocation a rdf:Property;
    rdfs:label "Home Location"@en;
    rdfs:comment "A contact location for a person's residence."@en;
    rdfs:domain schema:Person;
    rdfs:range [ a owl:Class; owl:unionOf (schema:ContactPoint schema:Place) ];
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:honorificPrefix a rdf:Property;
    rdfs:label "Honorific Prefix"@en;
    rdfs:comment "An honorific prefix preceding a Person's name such as Dr/Mrs/Mr."@en;
    rdfs:domain schema:Person;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:honorificSuffix a rdf:Property;
    rdfs:label "Honorific Suffix"@en;
    rdfs:comment "An honorific suffix preceding a Person's name such as M.D. /PhD/MSCSW."@en;
    rdfs:domain schema:Person;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:hospitalAffiliation a rdf:Property;
    rdfs:label "Hospital Affiliation"@en;
    rdfs:comment "A hospital with which the physician or office is affiliated."@en;
    rdfs:domain schema:Physician;
    rdfs:range schema:Hospital;
    rdfs:isDefinedBy <http://schema.org/Physician>;
    .
schema:howPerformed a rdf:Property;
    rdfs:label "How Performed"@en;
    rdfs:comment "How the procedure is performed."@en;
    rdfs:domain schema:MedicalProcedure;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalProcedure>;
    .
schema:identifyingExam a rdf:Property;
    rdfs:label "Identifying Exam"@en;
    rdfs:comment "A physical examination that can identify this sign."@en;
    rdfs:domain schema:MedicalSign;
    rdfs:range schema:PhysicalExam;
    rdfs:isDefinedBy <http://schema.org/MedicalSign>;
    .
schema:identifyingTest a rdf:Property;
    rdfs:label "Identifying Test"@en;
    rdfs:comment "A diagnostic test that can identify this sign."@en;
    rdfs:domain schema:MedicalSign;
    rdfs:range schema:MedicalTest;
    rdfs:isDefinedBy <http://schema.org/MedicalSign>;
    .
schema:illustrator a rdf:Property;
    rdfs:label "Illustrator"@en;
    rdfs:comment "The illustrator of the book."@en;
    rdfs:domain schema:Book;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Book>;
    .
schema:image a rdf:Property;
    rdfs:label "Image"@en;
    rdfs:comment "URL of an image of the item."@en;
    rdfs:domain schema:Thing;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/Thing>;
    .
schema:imagingTechnique a rdf:Property;
    rdfs:label "Imaging Technique"@en;
    rdfs:comment "Imaging technique used."@en;
    rdfs:domain schema:ImagingTest;
    rdfs:range schema:MedicalImagingTechnique;
    rdfs:isDefinedBy <http://schema.org/ImagingTest>;
    .
schema:inAlbum a rdf:Property;
    rdfs:label "In Album"@en;
    rdfs:comment "The album to which this recording belongs."@en;
    rdfs:domain schema:MusicRecording;
    rdfs:range schema:MusicAlbum;
    rdfs:isDefinedBy <http://schema.org/MusicRecording>;
    .
schema:inLanguage a rdf:Property;
    rdfs:label "In Language"@en;
    rdfs:comment "The language of the content. please use one of the language codes from the IETF BCP 47 standard."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:inPlaylist a rdf:Property;
    rdfs:label "In Playlist"@en;
    rdfs:comment "The playlist to which this recording belongs."@en;
    rdfs:domain schema:MusicRecording;
    rdfs:range schema:MusicPlaylist;
    rdfs:isDefinedBy <http://schema.org/MusicRecording>;
    .
schema:incentives a rdf:Property;
    rdfs:label "Incentives"@en;
    rdfs:comment "Description of bonus and commission compensation aspects of the job."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:includedRiskFactor a rdf:Property;
    rdfs:label "Included Risk Factor"@en;
    rdfs:comment "A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition."@en;
    rdfs:domain schema:MedicalRiskEstimator;
    rdfs:range schema:MedicalRiskFactor;
    rdfs:isDefinedBy <http://schema.org/MedicalRiskEstimator>;
    .
schema:includesObject a rdf:Property;
    rdfs:label "Includes Object"@en;
    rdfs:comment "This links to a node or nodes indicating the exact quantity of the products included in the offer."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:TypeAndQuantityNode;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:increasesRiskOf a rdf:Property;
    rdfs:label "Increases Risk of"@en;
    rdfs:comment "The condition, complication, etc. influenced by this factor."@en;
    rdfs:domain schema:MedicalRiskFactor;
    rdfs:range schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalRiskFactor>;
    .
schema:indication a rdf:Property;
    rdfs:label "Indication"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MedicalDevice schema:MedicalTherapy) ];
    rdfs:range schema:MedicalIndication;
    rdfs:isDefinedBy <http://schema.org/MedicalDevice>;
    rdfs:isDefinedBy <http://schema.org/MedicalTherapy>;
    .
schema:industry a rdf:Property;
    rdfs:label "Industry"@en;
    rdfs:comment "The industry associated with the job position."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:infectiousAgent a rdf:Property;
    rdfs:label "Infectious Agent"@en;
    rdfs:comment "The actual infectious agent, such as a specific bacterium."@en;
    rdfs:domain schema:InfectiousDisease;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/InfectiousDisease>;
    .
schema:infectiousAgentClass a rdf:Property;
    rdfs:label "Infectious Agent Class"@en;
    rdfs:comment "The class of infectious agent (bacteria, prion, etc.) that causes the disease."@en;
    rdfs:domain schema:InfectiousDisease;
    rdfs:range schema:InfectiousAgentClass;
    rdfs:isDefinedBy <http://schema.org/InfectiousDisease>;
    .
schema:ingredients a rdf:Property;
    rdfs:label "Ingredients"@en;
    rdfs:comment "An ingredient used in the recipe."@en;
    rdfs:domain schema:Recipe;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Recipe>;
    .
schema:insertion a rdf:Property;
    rdfs:label "Insertion"@en;
    rdfs:comment "The place of attachment of a muscle, or what the muscle moves."@en;
    rdfs:domain schema:Muscle;
    rdfs:range schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Muscle>;
    .
schema:installUrl a rdf:Property;
    rdfs:label "Install Url"@en;
    rdfs:comment "URL at which the app may be installed, if different from the URL of the item."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:intensity a rdf:Property;
    rdfs:label "Intensity"@en;
    rdfs:comment "Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement."@en;
    rdfs:domain schema:ExercisePlan;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/ExercisePlan>;
    .
schema:interactingDrug a rdf:Property;
    rdfs:label "Interacting Drug"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:Drug;
    rdfs:range schema:Drug;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:interactionCount a rdf:Property;
    rdfs:label "Interaction Count"@en;
    rdfs:comment "A count of a specific user interactions with this item—for example, 20 UserLikes, 5 UserComments, or 300 UserDownloads. The user interaction type should be one of the sub types of UserInteraction."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:CreativeWork schema:Place schema:Person) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:interactivityType a rdf:Property;
    rdfs:label "Interactivity Type"@en;
    rdfs:comment "The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:inventoryLevel a rdf:Property;
    rdfs:label "Inventory Level"@en;
    rdfs:comment "The current approximate inventory level for the item or items."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:SomeProducts schema:Offer schema:Demand) ];
    rdfs:range schema:QuantitativeValue;
    rdfs:isDefinedBy <http://schema.org/SomeProducts>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:isAccessoryOrSparePartFor a rdf:Property;
    rdfs:label "Is Accessory or Spare Part for"@en;
    rdfs:comment "A pointer to another product (or multiple products) for which this product is an accessory or spare part."@en;
    rdfs:domain schema:Product;
    rdfs:range schema:Product;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:isAvailableGenerically a rdf:Property;
    rdfs:label "Is Available Generically"@en;
    rdfs:comment "True if the drug is available in a generic form (regardless of name)."@en;
    rdfs:domain schema:Drug;
    rdfs:range xsd:boolean;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:isBasedOnUrl a rdf:Property;
    rdfs:label "Is Based On Url"@en;
    rdfs:comment "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"@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:isConsumableFor a rdf:Property;
    rdfs:label "Is Consumable for"@en;
    rdfs:comment "A pointer to another product (or multiple products) for which this product is a consumable."@en;
    rdfs:domain schema:Product;
    rdfs:range schema:Product;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:isFamilyFriendly a rdf:Property;
    rdfs:label "Is Family Friendly"@en;
    rdfs:comment "Indicates whether this content is family friendly."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:boolean;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:isPartOf a rdf:Property;
    rdfs:label "Is Part of"@en;
    rdfs:comment "Indicates the collection or gallery to which the item belongs."@en;
    rdfs:domain schema:WebPage;
    rdfs:range schema:CollectionPage;
    rdfs:isDefinedBy <http://schema.org/WebPage>;
    .
schema:isProprietary a rdf:Property;
    rdfs:label "Is Proprietary"@en;
    rdfs:comment "True if this item's name is a proprietary/brand name (vs. generic name)."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:DietarySupplement schema:Drug) ];
    rdfs:range xsd:boolean;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:isRelatedTo a rdf:Property;
    rdfs:label "Is Related to"@en;
    rdfs:comment "A pointer to another, somehow related product (or multiple products)."@en;
    rdfs:domain schema:Product;
    rdfs:range schema:Product;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:isSimilarTo a rdf:Property;
    rdfs:label "Is Similar to"@en;
    rdfs:comment "A pointer to another, functionally similar product (or multiple products)."@en;
    rdfs:domain schema:Product;
    rdfs:range schema:Product;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:isVariantOf a rdf:Property;
    rdfs:label "Is Variant of"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:ProductModel;
    rdfs:range schema:ProductModel;
    rdfs:isDefinedBy <http://schema.org/ProductModel>;
    .
schema:isbn a rdf:Property;
    rdfs:label "ISBN"@en;
    rdfs:comment "The ISBN of the book."@en;
    rdfs:domain schema:Book;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Book>;
    .
schema:isicV4 a rdf:Property;
    rdfs:label "Isic V4"@en;
    rdfs:comment "The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Place schema:Person) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:itemCondition a rdf:Property;
    rdfs:label "Item Condition"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Product schema:Offer schema:Demand) ];
    rdfs:range schema:OfferItemCondition;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:itemListElement a rdf:Property;
    rdfs:label "Item List Element"@en;
    rdfs:comment "A single list item."@en;
    rdfs:domain schema:ItemList;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/ItemList>;
    .
schema:itemListOrder a rdf:Property;
    rdfs:label "Item List Order"@en;
    rdfs:comment "Type of ordering (e.g. Ascending, Descending, Unordered)."@en;
    rdfs:domain schema:ItemList;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/ItemList>;
    .
schema:itemOffered a rdf:Property;
    rdfs:label "Item Offered"@en;
    rdfs:comment "The item being sold."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:Product;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:itemReviewed a rdf:Property;
    rdfs:label "Item Reviewed"@en;
    rdfs:comment "The item that is being reviewed/rated."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:AggregateRating schema:Review) ];
    rdfs:range schema:Thing;
    rdfs:isDefinedBy <http://schema.org/AggregateRating>;
    rdfs:isDefinedBy <http://schema.org/Review>;
    .
schema:jobLocation a rdf:Property;
    rdfs:label "Job Location"@en;
    rdfs:comment "A (typically single) geographic location associated with the job position."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range schema:Place;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:jobTitle a rdf:Property;
    rdfs:label "Job Title"@en;
    rdfs:comment "The job title of the person (for example, Financial Manager)."@en;
    rdfs:domain schema:Person;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:keywords a rdf:Property;
    rdfs:label "Keywords"@en;
    rdfs:comment "The keywords/tags used to describe this content."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:knows a rdf:Property;
    rdfs:label "Knows"@en;
    rdfs:comment "The most generic bi-directional social/work relation."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:labelDetails a rdf:Property;
    rdfs:label "Label Details"@en;
    rdfs:comment "Link to the drug's label details."@en;
    rdfs:domain schema:Drug;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:lastReviewed a rdf:Property;
    rdfs:label "Last Reviewed"@en;
    rdfs:comment "Date on which the content on this web page was last reviewed for accuracy and/or completeness."@en;
    rdfs:domain schema:WebPage;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/WebPage>;
    .
schema:latitude a rdf:Property;
    rdfs:label "Latitude"@en;
    rdfs:comment "The latitude of a location. For example 37.42242."@en;
    rdfs:domain schema:GeoCoordinates;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:decimal xsd:string) ];
    rdfs:isDefinedBy <http://schema.org/GeoCoordinates>;
    .
schema:learningResourceType a rdf:Property;
    rdfs:label "Learning Resource Type"@en;
    rdfs:comment "The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:legalName a rdf:Property;
    rdfs:label "Legal Name"@en;
    rdfs:comment "The official name of the organization, e.g. the registered company name."@en;
    rdfs:domain schema:Organization;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    .
schema:legalStatus a rdf:Property;
    rdfs:label "Legal Status"@en;
    rdfs:comment "The drug or supplement's legal status, including any controlled substance schedules that apply."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:DietarySupplement schema:Drug) ];
    rdfs:range schema:DrugLegalStatus;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:lesser a rdf:Property;
    rdfs:label "Lesser"@en;
    rdfs:comment "This ordering relation for qualitative values indicates that the subject is lesser than the object."@en;
    rdfs:domain schema:QualitativeValue;
    rdfs:range schema:QualitativeValue;
    rdfs:isDefinedBy <http://schema.org/QualitativeValue>;
    .
schema:lesserOrEqual a rdf:Property;
    rdfs:label "Lesser or Equal"@en;
    rdfs:comment "This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object."@en;
    rdfs:domain schema:QualitativeValue;
    rdfs:range schema:QualitativeValue;
    rdfs:isDefinedBy <http://schema.org/QualitativeValue>;
    .
schema:line a rdf:Property;
    rdfs:label "Line"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:GeoShape;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/GeoShape>;
    .
schema:location a rdf:Property;
    rdfs:label "Location"@en;
    rdfs:comment "The location of the event or organization."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Event) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:PostalAddress schema:Place) ];
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Event>;
    .
schema:logo a rdf:Property;
    rdfs:label "Logo"@en;
    rdfs:comment "URL of an image for the logo of the item."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Brand schema:Place schema:Product) ];
    rdfs:range [ a owl:Class; owl:unionOf (rdfs:Resource schema:ImageObject) ];
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Brand>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:longitude a rdf:Property;
    rdfs:label "Longitude"@en;
    rdfs:comment "The longitude of a location. For example -122.08585."@en;
    rdfs:domain schema:GeoCoordinates;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:decimal xsd:string) ];
    rdfs:isDefinedBy <http://schema.org/GeoCoordinates>;
    .
schema:lowPrice a rdf:Property;
    rdfs:label "Low Price"@en;
    rdfs:comment "The lowest price of all offers available."@en;
    rdfs:domain schema:AggregateOffer;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:decimal xsd:string) ];
    rdfs:isDefinedBy <http://schema.org/AggregateOffer>;
    .
schema:mainContentOfPage a rdf:Property;
    rdfs:label "Main Content of Page"@en;
    rdfs:comment "Indicates if this web page element is the main subject of the page."@en;
    rdfs:domain schema:WebPage;
    rdfs:range schema:WebPageElement;
    rdfs:isDefinedBy <http://schema.org/WebPage>;
    .
schema:makesOffer a rdf:Property;
    rdfs:label "Makes Offer"@en;
    rdfs:comment "A pointer to products or services offered by the organization or person."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:range schema:Offer;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:manufacturer a rdf:Property;
    rdfs:label "Manufacturer"@en;
    rdfs:comment "The manufacturer of the product."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Product schema:DietarySupplement schema:Drug) ];
    rdfs:range schema:Organization;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:map a rdf:Property;
    rdfs:label "Map"@en;
    rdfs:comment "A URL to a map of the place."@en;
    rdfs:domain schema:Place;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/Place>;
    .
schema:maps a rdf:Property;
    rdfs:label "Maps"@en;
    rdfs:comment "A URL to a map of the place (legacy spelling; see singular form, map)."@en;
    rdfs:domain schema:Place;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/Place>;
    .
schema:maxPrice a rdf:Property;
    rdfs:label "Max Price"@en;
    rdfs:comment "The highest price if the price is a range."@en;
    rdfs:domain schema:PriceSpecification;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/PriceSpecification>;
    .
schema:maxValue a rdf:Property;
    rdfs:label "Max Value"@en;
    rdfs:comment "The upper of the product characteristic."@en;
    rdfs:domain schema:QuantitativeValue;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/QuantitativeValue>;
    .
schema:maximumIntake a rdf:Property;
    rdfs:label "Maximum Intake"@en;
    rdfs:comment "Recommended intake of this supplement for a given population as defined by a specific recommending authority."@en;
    rdfs:domain schema:DietarySupplement;
    rdfs:range schema:MaximumDoseSchedule;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    .
schema:mechanismOfAction a rdf:Property;
    rdfs:label "Mechanism of Action"@en;
    rdfs:comment "The specific biochemical interaction through which this drug or supplement produces its pharmacological effect."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:DietarySupplement schema:Drug) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:medicalSpecialty a rdf:Property;
    rdfs:label "Medical Specialty"@en;
    rdfs:comment "A medical specialty of the provider."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Physician schema:Hospital schema:MedicalClinic) ];
    rdfs:range schema:MedicalSpecialty;
    rdfs:isDefinedBy <http://schema.org/Physician>;
    rdfs:isDefinedBy <http://schema.org/Hospital>;
    rdfs:isDefinedBy <http://schema.org/MedicalClinic>;
    .
schema:medicineSystem a rdf:Property;
    rdfs:label "Medicine System"@en;
    rdfs:comment "The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc."@en;
    rdfs:domain schema:MedicalEntity;
    rdfs:range schema:MedicineSystem;
    rdfs:isDefinedBy <http://schema.org/MedicalEntity>;
    .
schema:member a rdf:Property;
    rdfs:label "Member"@en;
    rdfs:comment "A member of this organization."@en;
    rdfs:domain schema:Organization;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/Organization>;
    .
schema:memberOf a rdf:Property;
    rdfs:label "Member of"@en;
    rdfs:comment "An organization to which the person belongs."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Organization;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:members a rdf:Property;
    rdfs:label "Members"@en;
    rdfs:comment "A member of this organization (legacy spelling; see singular form, member)."@en;
    rdfs:domain schema:Organization;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/Organization>;
    .
schema:memoryRequirements a rdf:Property;
    rdfs:label "Memory Requirements"@en;
    rdfs:comment "Minimum memory requirements."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string rdfs:Resource) ];
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:mentions a rdf:Property;
    rdfs:label "Mentions"@en;
    rdfs:comment "Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:Thing;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:menu a rdf:Property;
    rdfs:label "Menu"@en;
    rdfs:comment "Either the actual menu or a URL of the menu."@en;
    rdfs:domain schema:FoodEstablishment;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string rdfs:Resource) ];
    rdfs:isDefinedBy <http://schema.org/FoodEstablishment>;
    .
schema:minPrice a rdf:Property;
    rdfs:label "Min Price"@en;
    rdfs:comment "The lowest price if the price is a range."@en;
    rdfs:domain schema:PriceSpecification;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/PriceSpecification>;
    .
schema:minValue a rdf:Property;
    rdfs:label "Min Value"@en;
    rdfs:comment "The lower value of the product characteristic."@en;
    rdfs:domain schema:QuantitativeValue;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/QuantitativeValue>;
    .
schema:model a rdf:Property;
    rdfs:label "Model"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:Product;
    rdfs:range [ a owl:Class; owl:unionOf (schema:ProductModel xsd:string) ];
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:mpn a rdf:Property;
    rdfs:label "Mpn"@en;
    rdfs:comment "The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Product schema:Offer schema:Demand) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:musicBy a rdf:Property;
    rdfs:label "Music by"@en;
    rdfs:comment "The composer of the movie or TV soundtrack."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVEpisode schema:Movie schema:TVSeries) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:Person schema:MusicGroup) ];
    rdfs:isDefinedBy <http://schema.org/TVEpisode>;
    rdfs:isDefinedBy <http://schema.org/Movie>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:musicGroupMember a rdf:Property;
    rdfs:label "Music Group Member"@en;
    rdfs:comment "A member of the music group—for example, John, Paul, George, or Ringo."@en;
    rdfs:domain schema:MusicGroup;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/MusicGroup>;
    .
schema:naics a rdf:Property;
    rdfs:label "Naics"@en;
    rdfs:comment "The North American Industry Classification System (NAICS) code for a particular organization or business person."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:name a rdf:Property;
    rdfs:label "Name"@en;
    rdfs:comment "The name of the item."@en;
    rdfs:domain schema:Thing;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Thing>;
    .
schema:nationality a rdf:Property;
    rdfs:label "Nationality"@en;
    rdfs:comment "Nationality of the person."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Country;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:naturalProgression a rdf:Property;
    rdfs:label "Natural Progression"@en;
    rdfs:comment "The expected progression of the condition if it is not treated and allowed to progress naturally."@en;
    rdfs:domain schema:MedicalCondition;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:nerve a rdf:Property;
    rdfs:label "Nerve"@en;
    rdfs:comment "The underlying innervation associated with the muscle."@en;
    rdfs:domain schema:Muscle;
    rdfs:range schema:Nerve;
    rdfs:isDefinedBy <http://schema.org/Muscle>;
    .
schema:nerveMotor a rdf:Property;
    rdfs:label "Nerve Motor"@en;
    rdfs:comment "The neurological pathway extension that involves muscle control."@en;
    rdfs:domain schema:Nerve;
    rdfs:range schema:Muscle;
    rdfs:isDefinedBy <http://schema.org/Nerve>;
    .
schema:nonEqual a rdf:Property;
    rdfs:label "Non Equal"@en;
    rdfs:comment "This ordering relation for qualitative values indicates that the subject is not equal to the object."@en;
    rdfs:domain schema:QualitativeValue;
    rdfs:range schema:QualitativeValue;
    rdfs:isDefinedBy <http://schema.org/QualitativeValue>;
    .
schema:nonProprietaryName a rdf:Property;
    rdfs:label "Non Proprietary Name"@en;
    rdfs:comment "The generic name of this drug or supplement."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:DietarySupplement schema:Drug) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:normalRange a rdf:Property;
    rdfs:label "Normal Range"@en;
    rdfs:comment "Range of acceptable values for a typical patient, when applicable."@en;
    rdfs:domain schema:MedicalTest;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalTest>;
    .
schema:numTracks a rdf:Property;
    rdfs:label "Num Tracks"@en;
    rdfs:comment "The number of tracks in this album or playlist."@en;
    rdfs:domain schema:MusicPlaylist;
    rdfs:range xsd:integer;
    rdfs:isDefinedBy <http://schema.org/MusicPlaylist>;
    .
schema:numberOfEpisodes a rdf:Property;
    rdfs:label "Number of Episodes"@en;
    rdfs:comment "The number of episodes in this season or series."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVSeason schema:TVSeries) ];
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/TVSeason>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:numberOfPages a rdf:Property;
    rdfs:label "Number of Pages"@en;
    rdfs:comment "The number of pages in the book."@en;
    rdfs:domain schema:Book;
    rdfs:range xsd:integer;
    rdfs:isDefinedBy <http://schema.org/Book>;
    .
schema:nutrition a rdf:Property;
    rdfs:label "Nutrition"@en;
    rdfs:comment "Nutrition information about the recipe."@en;
    rdfs:domain schema:Recipe;
    rdfs:range schema:NutritionInformation;
    rdfs:isDefinedBy <http://schema.org/Recipe>;
    .
schema:occupationalCategory a rdf:Property;
    rdfs:label "Occupational Category"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:offerCount a rdf:Property;
    rdfs:label "Offer Count"@en;
    rdfs:comment "The number of offers for the product."@en;
    rdfs:domain schema:AggregateOffer;
    rdfs:range xsd:integer;
    rdfs:isDefinedBy <http://schema.org/AggregateOffer>;
    .
schema:offers a rdf:Property;
    rdfs:label "Offers"@en;
    rdfs:comment "An offer to sell this item—for example, an offer to sell a product, the DVD of a movie, or tickets to an event."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Product schema:CreativeWork schema:Event) ];
    rdfs:range schema:Offer;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    rdfs:isDefinedBy <http://schema.org/Event>;
    .
schema:openingHours a rdf:Property;
    rdfs:label "Opening Hours"@en;
    rdfs:comment "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>."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:LocalBusiness schema:CivicStructure) ];
    rdfs:range schema:Duration;
    rdfs:isDefinedBy <http://schema.org/LocalBusiness>;
    rdfs:isDefinedBy <http://schema.org/CivicStructure>;
    .
schema:openingHoursSpecification a rdf:Property;
    rdfs:label "Opening Hours Specification"@en;
    rdfs:comment "The opening hours of a certain place."@en;
    rdfs:domain schema:Place;
    rdfs:range schema:OpeningHoursSpecification;
    rdfs:isDefinedBy <http://schema.org/Place>;
    .
schema:opens a rdf:Property;
    rdfs:label "Opens"@en;
    rdfs:comment "The opening hour of the place or service on the given day(s) of the week."@en;
    rdfs:domain schema:OpeningHoursSpecification;
    rdfs:range schema:Time;
    rdfs:isDefinedBy <http://schema.org/OpeningHoursSpecification>;
    .
schema:operatingSystem a rdf:Property;
    rdfs:label "Operating System"@en;
    rdfs:comment "Operating systems supported (Windows 7, OSX 10.6, Android 1.6)."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:origin a rdf:Property;
    rdfs:label "Origin"@en;
    rdfs:comment "The place or point where a muscle arises."@en;
    rdfs:domain schema:Muscle;
    rdfs:range schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Muscle>;
    .
schema:originatesFrom a rdf:Property;
    rdfs:label "Originates From"@en;
    rdfs:comment "The vasculature the lymphatic structure originates, or afferents, from."@en;
    rdfs:domain schema:LymphaticVessel;
    rdfs:range schema:Vessel;
    rdfs:isDefinedBy <http://schema.org/LymphaticVessel>;
    .
schema:outcome a rdf:Property;
    rdfs:label "Outcome"@en;
    rdfs:comment "Expected or actual outcomes of the study."@en;
    rdfs:domain schema:MedicalStudy;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalStudy>;
    .
schema:overdosage a rdf:Property;
    rdfs:label "Overdosage"@en;
    rdfs:comment "Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response."@en;
    rdfs:domain schema:Drug;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:overview a rdf:Property;
    rdfs:label "Overview"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:Diet;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Diet>;
    .
schema:ownedFrom a rdf:Property;
    rdfs:label "Owned From"@en;
    rdfs:comment "The date and time of obtaining the product."@en;
    rdfs:domain schema:OwnershipInfo;
    rdfs:range schema:DateTime;
    rdfs:isDefinedBy <http://schema.org/OwnershipInfo>;
    .
schema:ownedThrough a rdf:Property;
    rdfs:label "Owned Through"@en;
    rdfs:comment "The date and time of giving up ownership on the product."@en;
    rdfs:domain schema:OwnershipInfo;
    rdfs:range schema:DateTime;
    rdfs:isDefinedBy <http://schema.org/OwnershipInfo>;
    .
schema:owns a rdf:Property;
    rdfs:label "Owns"@en;
    rdfs:comment "Products owned by the organization or person."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:OwnershipInfo schema:Product) ];
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:parent a rdf:Property;
    rdfs:label "Parent"@en;
    rdfs:comment "A parent of this person."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:parents a rdf:Property;
    rdfs:label "Parents"@en;
    rdfs:comment "A parents of the person (legacy spelling; see singular form, parent)."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:partOfSeason a rdf:Property;
    rdfs:label "Part of Season"@en;
    rdfs:comment "The season to which this episode belongs."@en;
    rdfs:domain schema:TVEpisode;
    rdfs:range schema:TVSeason;
    rdfs:isDefinedBy <http://schema.org/TVEpisode>;
    .
schema:partOfSystem a rdf:Property;
    rdfs:label "Part of System"@en;
    rdfs:comment "The anatomical or organ system that this structure is part of."@en;
    rdfs:domain schema:AnatomicalStructure;
    rdfs:range schema:AnatomicalSystem;
    rdfs:isDefinedBy <http://schema.org/AnatomicalStructure>;
    .
schema:partOfTVSeries a rdf:Property;
    rdfs:label "Part of TV Series"@en;
    rdfs:comment "The TV series to which this episode or season belongs."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVEpisode schema:TVSeason) ];
    rdfs:range schema:TVSeries;
    rdfs:isDefinedBy <http://schema.org/TVEpisode>;
    rdfs:isDefinedBy <http://schema.org/TVSeason>;
    .
schema:pathophysiology a rdf:Property;
    rdfs:label "Pathophysiology"@en;
    rdfs:comment "Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MedicalCondition schema:PhysicalActivity) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    rdfs:isDefinedBy <http://schema.org/PhysicalActivity>;
    .
schema:paymentAccepted a rdf:Property;
    rdfs:label "Payment Accepted"@en;
    rdfs:comment "Cash, credit card, etc."@en;
    rdfs:domain schema:LocalBusiness;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/LocalBusiness>;
    .
schema:performer a rdf:Property;
    rdfs:label "Performer"@en;
    rdfs:comment "A performer at the event—for example, a presenter, musician, musical group or actor."@en;
    rdfs:domain schema:Event;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/Event>;
    .
schema:performerIn a rdf:Property;
    rdfs:label "Performer in"@en;
    rdfs:comment "Event that this person is a performer or participant in."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Event;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:performers a rdf:Property;
    rdfs:label "Performers"@en;
    rdfs:comment "The main performer or performers of the event—for example, a presenter, musician, or actor (legacy spelling; see singular form, performer)."@en;
    rdfs:domain schema:Event;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/Event>;
    .
schema:permissions a rdf:Property;
    rdfs:label "Permissions"@en;
    rdfs:comment "Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi)."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:phase a rdf:Property;
    rdfs:label "Phase"@en;
    rdfs:comment "The phase of the trial."@en;
    rdfs:domain schema:MedicalTrial;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalTrial>;
    .
schema:photo a rdf:Property;
    rdfs:label "Photo"@en;
    rdfs:comment "A photograph of this place."@en;
    rdfs:domain schema:Place;
    rdfs:range [ a owl:Class; owl:unionOf (schema:ImageObject schema:Photograph) ];
    rdfs:isDefinedBy <http://schema.org/Place>;
    .
schema:photos a rdf:Property;
    rdfs:label "Photos"@en;
    rdfs:comment "Photographs of this place (legacy spelling; see singular form, photo)."@en;
    rdfs:domain schema:Place;
    rdfs:range [ a owl:Class; owl:unionOf (schema:ImageObject schema:Photograph) ];
    rdfs:isDefinedBy <http://schema.org/Place>;
    .
schema:physiologicalBenefits a rdf:Property;
    rdfs:label "Physiological Benefits"@en;
    rdfs:comment "Specific physiologic benefits associated to the plan."@en;
    rdfs:domain schema:Diet;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Diet>;
    .
schema:playerType a rdf:Property;
    rdfs:label "Player Type"@en;
    rdfs:comment "Player type required—for example, Flash or Silverlight."@en;
    rdfs:domain schema:MediaObject;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:polygon a rdf:Property;
    rdfs:label "Polygon"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:GeoShape;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/GeoShape>;
    .
schema:population a rdf:Property;
    rdfs:label "Population"@en;
    rdfs:comment "Any characteristics of the population used in the study, e.g. 'males under 65'."@en;
    rdfs:domain schema:MedicalStudy;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalStudy>;
    .
schema:possibleComplication a rdf:Property;
    rdfs:label "Possible Complication"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:MedicalCondition;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:possibleTreatment a rdf:Property;
    rdfs:label "Possible Treatment"@en;
    rdfs:comment "A possible treatment to address this condition, sign or symptom."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MedicalCondition schema:MedicalSignOrSymptom) ];
    rdfs:range schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    rdfs:isDefinedBy <http://schema.org/MedicalSignOrSymptom>;
    .
schema:postOfficeBoxNumber a rdf:Property;
    rdfs:label "Post Office Box Number"@en;
    rdfs:comment "The post offce box number for PO box addresses."@en;
    rdfs:domain schema:PostalAddress;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/PostalAddress>;
    .
schema:postOp a rdf:Property;
    rdfs:label "Post Op"@en;
    rdfs:comment "A description of the postoperative procedures, care, and/or followups for this device."@en;
    rdfs:domain schema:MedicalDevice;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalDevice>;
    .
schema:postalCode a rdf:Property;
    rdfs:label "Postal Code"@en;
    rdfs:comment "The postal code. For example, 94043."@en;
    rdfs:domain schema:PostalAddress;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/PostalAddress>;
    .
schema:preOp a rdf:Property;
    rdfs:label "Pre Op"@en;
    rdfs:comment "A description of the workup, testing, and other preparations required before implanting this device."@en;
    rdfs:domain schema:MedicalDevice;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalDevice>;
    .
schema:predecessorOf a rdf:Property;
    rdfs:label "Predecessor of"@en;
    rdfs:comment "A pointer from a previous, often discontinued variant of the product to its newer variant."@en;
    rdfs:domain schema:ProductModel;
    rdfs:range schema:ProductModel;
    rdfs:isDefinedBy <http://schema.org/ProductModel>;
    .
schema:pregnancyCategory a rdf:Property;
    rdfs:label "Pregnancy Category"@en;
    rdfs:comment "Pregnancy category of this drug."@en;
    rdfs:domain schema:Drug;
    rdfs:range schema:DrugPregnancyCategory;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:pregnancyWarning a rdf:Property;
    rdfs:label "Pregnancy Warning"@en;
    rdfs:comment "Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy."@en;
    rdfs:domain schema:Drug;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:prepTime a rdf:Property;
    rdfs:label "Prep Time"@en;
    rdfs:comment "The length of time it takes to prepare the recipe, in ISO 8601 duration format."@en;
    rdfs:domain schema:Recipe;
    rdfs:range schema:Duration;
    rdfs:isDefinedBy <http://schema.org/Recipe>;
    .
schema:preparation a rdf:Property;
    rdfs:label "Preparation"@en;
    rdfs:comment "Typical preparation that a patient must undergo before having the procedure performed."@en;
    rdfs:domain schema:MedicalProcedure;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalProcedure>;
    .
schema:prescribingInfo a rdf:Property;
    rdfs:label "Prescribing Info"@en;
    rdfs:comment "Link to prescribing information for the drug."@en;
    rdfs:domain schema:Drug;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:prescriptionStatus a rdf:Property;
    rdfs:label "Prescription Status"@en;
    rdfs:comment "Indicates whether this drug is available by prescription or over-the-counter."@en;
    rdfs:domain schema:Drug;
    rdfs:range schema:DrugPrescriptionStatus;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:price a rdf:Property;
    rdfs:label "Price"@en;
    rdfs:comment "The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:PriceSpecification schema:Offer) ];
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string xsd:decimal) ];
    rdfs:isDefinedBy <http://schema.org/PriceSpecification>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:priceCurrency a rdf:Property;
    rdfs:label "Price Currency"@en;
    rdfs:comment "The currency (in 3-letter ISO 4217 format) of the offer price or a price component, when attached to PriceSpecification and its subtypes."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:PriceSpecification schema:Offer) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/PriceSpecification>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:priceRange a rdf:Property;
    rdfs:label "Price Range"@en;
    rdfs:comment "The price range of the business, for example $$$."@en;
    rdfs:domain schema:LocalBusiness;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/LocalBusiness>;
    .
schema:priceSpecification a rdf:Property;
    rdfs:label "Price Specification"@en;
    rdfs:comment "One or more detailed price specifications, indicating the unit price and delivery or payment charges."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:PriceSpecification;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:priceType a rdf:Property;
    rdfs:label "Price Type"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:UnitPriceSpecification;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/UnitPriceSpecification>;
    .
schema:priceValidUntil a rdf:Property;
    rdfs:label "Price Valid Until"@en;
    rdfs:comment "The date after which the price is no longer available."@en;
    rdfs:domain schema:Offer;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:primaryImageOfPage a rdf:Property;
    rdfs:label "Primary Image of Page"@en;
    rdfs:comment "Indicates the main image on the page"@en;
    rdfs:domain schema:WebPage;
    rdfs:range schema:ImageObject;
    rdfs:isDefinedBy <http://schema.org/WebPage>;
    .
schema:primaryPrevention a rdf:Property;
    rdfs:label "Primary Prevention"@en;
    rdfs:comment "A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination."@en;
    rdfs:domain schema:MedicalCondition;
    rdfs:range schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:printColumn a rdf:Property;
    rdfs:label "Print Column"@en;
    rdfs:comment "The number of the column in which the NewsArticle appears in the print edition."@en;
    rdfs:domain schema:NewsArticle;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/NewsArticle>;
    .
schema:printEdition a rdf:Property;
    rdfs:label "Print Edition"@en;
    rdfs:comment "The edition of the print product in which the NewsArticle appears."@en;
    rdfs:domain schema:NewsArticle;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/NewsArticle>;
    .
schema:printPage a rdf:Property;
    rdfs:label "Print Page"@en;
    rdfs:comment "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)."@en;
    rdfs:domain schema:NewsArticle;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/NewsArticle>;
    .
schema:printSection a rdf:Property;
    rdfs:label "Print Section"@en;
    rdfs:comment "If this NewsArticle appears in print, this field indicates the print section in which the article appeared."@en;
    rdfs:domain schema:NewsArticle;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/NewsArticle>;
    .
schema:procedure a rdf:Property;
    rdfs:label "Procedure"@en;
    rdfs:comment "A description of the procedure involved in setting up, using, and/or installing the device."@en;
    rdfs:domain schema:MedicalDevice;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalDevice>;
    .
schema:procedureType a rdf:Property;
    rdfs:label "Procedure Type"@en;
    rdfs:comment "The type of procedure, for example Surgical, Noninvasive, or Percutaneous."@en;
    rdfs:domain schema:MedicalProcedure;
    rdfs:range schema:MedicalProcedureType;
    rdfs:isDefinedBy <http://schema.org/MedicalProcedure>;
    .
schema:processorRequirements a rdf:Property;
    rdfs:label "Processor Requirements"@en;
    rdfs:comment "Processor architecture required to run the application (e.g. IA64)."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:producer a rdf:Property;
    rdfs:label "Producer"@en;
    rdfs:comment "The producer of the movie, TV series, season, or episode, or video."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVEpisode schema:Movie schema:TVSeries) ];
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/TVEpisode>;
    rdfs:isDefinedBy <http://schema.org/Movie>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:productID a rdf:Property;
    rdfs:label "Product ID"@en;
    rdfs:comment "The product identifier, such as ISBN. For example: <meta itemprop='productID' content='isbn:123-456-789'/>."@en;
    rdfs:domain schema:Product;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:productionCompany a rdf:Property;
    rdfs:label "Production Company"@en;
    rdfs:comment "The production company or studio that made the movie, TV series, season, or episode, or video."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVEpisode schema:Movie schema:VideoObject schema:TVSeries) ];
    rdfs:range schema:Organization;
    rdfs:isDefinedBy <http://schema.org/TVEpisode>;
    rdfs:isDefinedBy <http://schema.org/Movie>;
    rdfs:isDefinedBy <http://schema.org/VideoObject>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:proficiencyLevel a rdf:Property;
    rdfs:label "Proficiency Level"@en;
    rdfs:comment "Proficiency needed for this content; expected values: 'Beginner', 'Expert'."@en;
    rdfs:domain schema:TechArticle;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/TechArticle>;
    .
schema:programmingLanguage a rdf:Property;
    rdfs:label "Programming Language"@en;
    rdfs:comment "The computer programming language."@en;
    rdfs:domain schema:Code;
    rdfs:range schema:Thing;
    rdfs:isDefinedBy <http://schema.org/Code>;
    .
schema:programmingModel a rdf:Property;
    rdfs:label "Programming Model"@en;
    rdfs:comment "Indicates whether API is managed or unmanaged."@en;
    rdfs:domain schema:APIReference;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/APIReference>;
    .
schema:proprietaryName a rdf:Property;
    rdfs:label "Proprietary Name"@en;
    rdfs:comment "Proprietary name given to the diet plan, typically by its originator or creator."@en;
    rdfs:domain schema:Diet;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Diet>;
    .
schema:proteinContent a rdf:Property;
    rdfs:label "Protein Content"@en;
    rdfs:comment "The number of grams of protein."@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range schema:Mass;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:provider a rdf:Property;
    rdfs:label "Provider"@en;
    rdfs:comment "Specifies the Person or Organization that distributed the CreativeWork."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:publicationType a rdf:Property;
    rdfs:label "Publication Type"@en;
    rdfs:comment "The type of the medical article, taken from the US NLM MeSH publication type catalog."@en;
    rdfs:domain schema:MedicalScholarlyArticle;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalScholarlyArticle>;
    .
schema:publisher a rdf:Property;
    rdfs:label "Publisher"@en;
    rdfs:comment "The publisher of the creative work."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:Organization;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:publishingPrinciples a rdf:Property;
    rdfs:label "Publishing Principles"@en;
    rdfs:comment "Link to page describing the editorial principles of the organization primarily responsible for the creation of the CreativeWork."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:purpose a rdf:Property;
    rdfs:label "Purpose"@en;
    rdfs:comment "The purpose or purposes of this device, for example whether it is intended for diagnostic or therapeutic use."@en;
    rdfs:domain schema:MedicalDevice;
    rdfs:range schema:MedicalDevicePurpose;
    rdfs:isDefinedBy <http://schema.org/MedicalDevice>;
    .
schema:qualifications a rdf:Property;
    rdfs:label "Qualifications"@en;
    rdfs:comment "Specific qualifications required for this role."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:rangeIncludes a rdf:Property;
    rdfs:label "Range Includes"@en;
    rdfs:comment "Relates a property to a class that constitutes (one of) the expected type(s) for values of the property."@en;
    rdfs:domain schema:Property;
    rdfs:range schema:Class;
    rdfs:isDefinedBy <http://schema.org/Property>;
    .
schema:ratingCount a rdf:Property;
    rdfs:label "Rating Count"@en;
    rdfs:comment "The count of total number of ratings."@en;
    rdfs:domain schema:AggregateRating;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/AggregateRating>;
    .
schema:ratingValue a rdf:Property;
    rdfs:label "Rating Value"@en;
    rdfs:comment "The rating for the content."@en;
    rdfs:domain schema:Rating;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Rating>;
    .
schema:recipeCategory a rdf:Property;
    rdfs:label "Recipe Category"@en;
    rdfs:comment "The category of the recipe—for example, appetizer, entree, etc."@en;
    rdfs:domain schema:Recipe;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Recipe>;
    .
schema:recipeCuisine a rdf:Property;
    rdfs:label "Recipe Cuisine"@en;
    rdfs:comment "The cuisine of the recipe (for example, French or Ethopian)."@en;
    rdfs:domain schema:Recipe;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Recipe>;
    .
schema:recipeInstructions a rdf:Property;
    rdfs:label "Recipe Instructions"@en;
    rdfs:comment "The steps to make the dish."@en;
    rdfs:domain schema:Recipe;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Recipe>;
    .
schema:recipeYield a rdf:Property;
    rdfs:label "Recipe Yield"@en;
    rdfs:comment "The quantity produced by the recipe (for example, number of people served, number of servings, etc)."@en;
    rdfs:domain schema:Recipe;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Recipe>;
    .
schema:recognizingAuthority a rdf:Property;
    rdfs:label "Recognizing Authority"@en;
    rdfs:comment "If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine."@en;
    rdfs:domain schema:MedicalEntity;
    rdfs:range schema:Organization;
    rdfs:isDefinedBy <http://schema.org/MedicalEntity>;
    .
schema:recommendationStrength a rdf:Property;
    rdfs:label "Recommendation Strength"@en;
    rdfs:comment "Strength of the guideline's recommendation (e.g. 'class I')."@en;
    rdfs:domain schema:MedicalGuidelineRecommendation;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalGuidelineRecommendation>;
    .
schema:recommendedIntake a rdf:Property;
    rdfs:label "Recommended Intake"@en;
    rdfs:comment "Recommended intake of this supplement for a given population as defined by a specific recommending authority."@en;
    rdfs:domain schema:DietarySupplement;
    rdfs:range schema:RecommendedDoseSchedule;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    .
schema:regionDrained a rdf:Property;
    rdfs:label "Region Drained"@en;
    rdfs:comment "The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:LymphaticVessel schema:Vein) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:AnatomicalSystem schema:AnatomicalStructure) ];
    rdfs:isDefinedBy <http://schema.org/LymphaticVessel>;
    rdfs:isDefinedBy <http://schema.org/Vein>;
    .
schema:regionsAllowed a rdf:Property;
    rdfs:label "Regions Allowed"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:MediaObject;
    rdfs:range schema:Place;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:relatedAnatomy a rdf:Property;
    rdfs:label "Related Anatomy"@en;
    rdfs:comment "Anatomical systems or structures that relate to the superficial anatomy."@en;
    rdfs:domain schema:SuperficialAnatomy;
    rdfs:range [ a owl:Class; owl:unionOf (schema:AnatomicalStructure schema:AnatomicalSystem) ];
    rdfs:isDefinedBy <http://schema.org/SuperficialAnatomy>;
    .
schema:relatedCondition a rdf:Property;
    rdfs:label "Related Condition"@en;
    rdfs:comment "A medical condition associated with this anatomy."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:SuperficialAnatomy schema:AnatomicalSystem schema:AnatomicalStructure) ];
    rdfs:range schema:MedicalCondition;
    rdfs:isDefinedBy <http://schema.org/SuperficialAnatomy>;
    rdfs:isDefinedBy <http://schema.org/AnatomicalSystem>;
    rdfs:isDefinedBy <http://schema.org/AnatomicalStructure>;
    .
schema:relatedDrug a rdf:Property;
    rdfs:label "Related Drug"@en;
    rdfs:comment "Any other drug related to this one, for example commonly-prescribed alternatives."@en;
    rdfs:domain schema:Drug;
    rdfs:range schema:Drug;
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:relatedLink a rdf:Property;
    rdfs:label "Related Link"@en;
    rdfs:comment "A link related to this web page, for example to other related web pages."@en;
    rdfs:domain schema:WebPage;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/WebPage>;
    .
schema:relatedStructure a rdf:Property;
    rdfs:label "Related Structure"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:AnatomicalSystem;
    rdfs:range schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/AnatomicalSystem>;
    .
schema:relatedTherapy a rdf:Property;
    rdfs:label "Related Therapy"@en;
    rdfs:comment "A medical therapy related to this anatomy."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:SuperficialAnatomy schema:AnatomicalSystem schema:AnatomicalStructure) ];
    rdfs:range schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/SuperficialAnatomy>;
    rdfs:isDefinedBy <http://schema.org/AnatomicalSystem>;
    rdfs:isDefinedBy <http://schema.org/AnatomicalStructure>;
    .
schema:relatedTo a rdf:Property;
    rdfs:label "Related to"@en;
    rdfs:comment "The most generic familial relation."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:releaseDate a rdf:Property;
    rdfs:label "Release Date"@en;
    rdfs:comment "The release date of a product or product model. This can be used to distinguish the exact variant of a product."@en;
    rdfs:domain schema:Product;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:releaseNotes a rdf:Property;
    rdfs:label "Release Notes"@en;
    rdfs:comment "Description of what changed in this version."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string rdfs:Resource) ];
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:relevantSpecialty a rdf:Property;
    rdfs:label "Relevant Specialty"@en;
    rdfs:comment "If applicable, a medical specialty in which this entity is relevant."@en;
    rdfs:domain schema:MedicalEntity;
    rdfs:range schema:MedicalSpecialty;
    rdfs:isDefinedBy <http://schema.org/MedicalEntity>;
    .
schema:repetitions a rdf:Property;
    rdfs:label "Repetitions"@en;
    rdfs:comment "Number of times one should repeat the activity."@en;
    rdfs:domain schema:ExercisePlan;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/ExercisePlan>;
    .
schema:replyToUrl a rdf:Property;
    rdfs:label "Reply to Url"@en;
    rdfs:comment "The URL at which a reply may be posted to the specified UserComment."@en;
    rdfs:domain schema:UserComments;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/UserComments>;
    .
schema:representativeOfPage a rdf:Property;
    rdfs:label "Representative of Page"@en;
    rdfs:comment "Indicates whether this image is representative of the content of the page."@en;
    rdfs:domain schema:ImageObject;
    rdfs:range xsd:boolean;
    rdfs:isDefinedBy <http://schema.org/ImageObject>;
    .
schema:requirements a rdf:Property;
    rdfs:label "Requirements"@en;
    rdfs:comment "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)."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string rdfs:Resource) ];
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:requiresSubscription a rdf:Property;
    rdfs:label "Requires Subscription"@en;
    rdfs:comment "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')."@en;
    rdfs:domain schema:MediaObject;
    rdfs:range xsd:boolean;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:responsibilities a rdf:Property;
    rdfs:label "Responsibilities"@en;
    rdfs:comment "Responsibilities associated with this role."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:restPeriods a rdf:Property;
    rdfs:label "Rest Periods"@en;
    rdfs:comment "How often one should break from the activity."@en;
    rdfs:domain schema:ExercisePlan;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/ExercisePlan>;
    .
schema:review a rdf:Property;
    rdfs:label "Review"@en;
    rdfs:comment "A review of the item."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Product schema:CreativeWork schema:Place schema:Offer) ];
    rdfs:range schema:Review;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:reviewBody a rdf:Property;
    rdfs:label "Review Body"@en;
    rdfs:comment "The actual body of the review"@en;
    rdfs:domain schema:Review;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Review>;
    .
schema:reviewCount a rdf:Property;
    rdfs:label "Review Count"@en;
    rdfs:comment "The count of total number of reviews."@en;
    rdfs:domain schema:AggregateRating;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/AggregateRating>;
    .
schema:reviewRating a rdf:Property;
    rdfs:label "Review Rating"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:Review;
    rdfs:range schema:Rating;
    rdfs:isDefinedBy <http://schema.org/Review>;
    .
schema:reviewedBy a rdf:Property;
    rdfs:label "Reviewed by"@en;
    rdfs:comment "People or organizations that have reviewed the content on this web page for accuracy and/or completeness."@en;
    rdfs:domain schema:WebPage;
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/WebPage>;
    .
schema:reviews a rdf:Property;
    rdfs:label "Reviews"@en;
    rdfs:comment "Review of the item (legacy spelling; see singular form, review)."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Product schema:CreativeWork schema:Place schema:Offer) ];
    rdfs:range schema:Review;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:riskFactor a rdf:Property;
    rdfs:label "Risk Factor"@en;
    rdfs:comment "A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age,  coexisting condition."@en;
    rdfs:domain schema:MedicalCondition;
    rdfs:range schema:MedicalRiskFactor;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:risks a rdf:Property;
    rdfs:label "Risks"@en;
    rdfs:comment "Specific physiologic risks associated to the plan."@en;
    rdfs:domain schema:Diet;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Diet>;
    .
schema:runsTo a rdf:Property;
    rdfs:label "Runs to"@en;
    rdfs:comment "The vasculature the lymphatic structure runs, or efferents, to."@en;
    rdfs:domain schema:LymphaticVessel;
    rdfs:range schema:Vessel;
    rdfs:isDefinedBy <http://schema.org/LymphaticVessel>;
    .
schema:runtime a rdf:Property;
    rdfs:label "Runtime"@en;
    rdfs:comment "Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0)"@en;
    rdfs:domain schema:Code;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Code>;
    .
schema:safetyConsideration a rdf:Property;
    rdfs:label "Safety Consideration"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:DietarySupplement;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    .
schema:salaryCurrency a rdf:Property;
    rdfs:label "Salary Currency"@en;
    rdfs:comment "The currency (coded using ISO 4217, http://en.wikipedia.org/wiki/ISO_4217 used for the main salary information in this job posting."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:sampleType a rdf:Property;
    rdfs:label "Sample Type"@en;
    rdfs:comment "Full (compile ready) solution, code snippet, inline code, scripts, template."@en;
    rdfs:domain schema:Code;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Code>;
    .
schema:saturatedFatContent a rdf:Property;
    rdfs:label "Saturated Fat Content"@en;
    rdfs:comment "The number of grams of saturated fat."@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range schema:Mass;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:screenshot a rdf:Property;
    rdfs:label "Screenshot"@en;
    rdfs:comment "A link to a screenshot image of the app."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range [ a owl:Class; owl:unionOf (schema:ImageObject rdfs:Resource) ];
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:season a rdf:Property;
    rdfs:label "Season"@en;
    rdfs:comment "A season of a TV series."@en;
    rdfs:domain schema:TVSeries;
    rdfs:range schema:TVSeason;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:seasonNumber a rdf:Property;
    rdfs:label "Season Number"@en;
    rdfs:comment "The season number."@en;
    rdfs:domain schema:TVSeason;
    rdfs:range xsd:integer;
    rdfs:isDefinedBy <http://schema.org/TVSeason>;
    .
schema:seasons a rdf:Property;
    rdfs:label "Seasons"@en;
    rdfs:comment "The seasons of the TV series (legacy spelling; see singular form, season)."@en;
    rdfs:domain schema:TVSeries;
    rdfs:range schema:TVSeason;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:secondaryPrevention a rdf:Property;
    rdfs:label "Secondary Prevention"@en;
    rdfs:comment "A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition."@en;
    rdfs:domain schema:MedicalCondition;
    rdfs:range schema:MedicalTherapy;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:seeks a rdf:Property;
    rdfs:label "Seeks"@en;
    rdfs:comment "A pointer to products or services sought by the organization or person (demand)."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:range schema:Demand;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:seller a rdf:Property;
    rdfs:label "Seller"@en;
    rdfs:comment "The seller."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:sensoryUnit a rdf:Property;
    rdfs:label "Sensory Unit"@en;
    rdfs:comment "The neurological pathway extension that inputs and sends information to the brain or spinal cord."@en;
    rdfs:domain schema:Nerve;
    rdfs:range [ a owl:Class; owl:unionOf (schema:AnatomicalStructure schema:SuperficialAnatomy) ];
    rdfs:isDefinedBy <http://schema.org/Nerve>;
    .
schema:serialNumber a rdf:Property;
    rdfs:label "Serial Number"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Demand schema:IndividualProduct schema:Offer) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    rdfs:isDefinedBy <http://schema.org/IndividualProduct>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:seriousAdverseOutcome a rdf:Property;
    rdfs:label "Serious Adverse Outcome"@en;
    rdfs:comment "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."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MedicalDevice schema:MedicalTherapy) ];
    rdfs:range schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalDevice>;
    rdfs:isDefinedBy <http://schema.org/MedicalTherapy>;
    .
schema:servesCuisine a rdf:Property;
    rdfs:label "Serves Cuisine"@en;
    rdfs:comment "The cuisine of the restaurant."@en;
    rdfs:domain schema:FoodEstablishment;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/FoodEstablishment>;
    .
schema:servingSize a rdf:Property;
    rdfs:label "Serving Size"@en;
    rdfs:comment "The serving size, in terms of the number of volume or mass"@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:sibling a rdf:Property;
    rdfs:label "Sibling"@en;
    rdfs:comment "A sibling of the person."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:siblings a rdf:Property;
    rdfs:label "Siblings"@en;
    rdfs:comment "A sibling of the person (legacy spelling; see singular form, sibling)."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:signDetected a rdf:Property;
    rdfs:label "Sign Detected"@en;
    rdfs:comment "A sign detected by the test."@en;
    rdfs:domain schema:MedicalTest;
    rdfs:range schema:MedicalSign;
    rdfs:isDefinedBy <http://schema.org/MedicalTest>;
    .
schema:signOrSymptom a rdf:Property;
    rdfs:label "Sign or Symptom"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:MedicalCondition;
    rdfs:range schema:MedicalSignOrSymptom;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:significance a rdf:Property;
    rdfs:label "Significance"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:SuperficialAnatomy;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/SuperficialAnatomy>;
    .
schema:significantLink a rdf:Property;
    rdfs:label "Significant Link"@en;
    rdfs:comment "One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most."@en;
    rdfs:domain schema:WebPage;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/WebPage>;
    .
schema:significantLinks a rdf:Property;
    rdfs:label "Significant Links"@en;
    rdfs:comment "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)."@en;
    rdfs:domain schema:WebPage;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/WebPage>;
    .
schema:skills a rdf:Property;
    rdfs:label "Skills"@en;
    rdfs:comment "Skills required to fulfill this role."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:sku a rdf:Property;
    rdfs:label "Sku"@en;
    rdfs:comment "The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Product schema:Offer schema:Demand) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Product>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:sodiumContent a rdf:Property;
    rdfs:label "Sodium Content"@en;
    rdfs:comment "The number of milligrams of sodium."@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range schema:Mass;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:softwareVersion a rdf:Property;
    rdfs:label "Software Version"@en;
    rdfs:comment "Version of the software instance."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:source a rdf:Property;
    rdfs:label "Source"@en;
    rdfs:comment "The anatomical or organ system that the artery originates from."@en;
    rdfs:domain schema:Artery;
    rdfs:range schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Artery>;
    .
schema:sourceOrganization a rdf:Property;
    rdfs:label "Source Organization"@en;
    rdfs:comment "The Organization on whose behalf the creator was working."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:Organization;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:sourcedFrom a rdf:Property;
    rdfs:label "Sourced From"@en;
    rdfs:comment "The neurological pathway that originates the neurons."@en;
    rdfs:domain schema:Nerve;
    rdfs:range schema:BrainStructure;
    rdfs:isDefinedBy <http://schema.org/Nerve>;
    .
schema:spatial a rdf:Property;
    rdfs:label "Spatial"@en;
    rdfs:comment "The range of spatial applicability of a dataset, e.g. for a dataset of New York weather, the state of New York."@en;
    rdfs:domain schema:Dataset;
    rdfs:range schema:Place;
    rdfs:isDefinedBy <http://schema.org/Dataset>;
    .
schema:specialCommitments a rdf:Property;
    rdfs:label "Special Commitments"@en;
    rdfs:comment "Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:specialty a rdf:Property;
    rdfs:label "Specialty"@en;
    rdfs:comment "One of the domain specialities to which this web page's content applies."@en;
    rdfs:domain schema:WebPage;
    rdfs:range schema:Specialty;
    rdfs:isDefinedBy <http://schema.org/WebPage>;
    .
schema:sponsor a rdf:Property;
    rdfs:label "Sponsor"@en;
    rdfs:comment "Sponsor of the study."@en;
    rdfs:domain schema:MedicalStudy;
    rdfs:range schema:Organization;
    rdfs:isDefinedBy <http://schema.org/MedicalStudy>;
    .
schema:spouse a rdf:Property;
    rdfs:label "Spouse"@en;
    rdfs:comment "The person's spouse."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Person;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:stage a rdf:Property;
    rdfs:label "Stage"@en;
    rdfs:comment "The stage of the condition, if applicable."@en;
    rdfs:domain schema:MedicalCondition;
    rdfs:range schema:MedicalConditionStage;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:stageAsNumber a rdf:Property;
    rdfs:label "Stage As Number"@en;
    rdfs:comment "The stage represented as a number, e.g. 3."@en;
    rdfs:domain schema:MedicalConditionStage;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/MedicalConditionStage>;
    .
schema:startDate a rdf:Property;
    rdfs:label "Start Date"@en;
    rdfs:comment "The start date and time of the event (in ISO 8601 date format)."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVSeason schema:Event schema:TVSeries) ];
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/TVSeason>;
    rdfs:isDefinedBy <http://schema.org/Event>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    .
schema:status a rdf:Property;
    rdfs:label "Status"@en;
    rdfs:comment "The status of the study (enumerated)."@en;
    rdfs:domain schema:MedicalStudy;
    rdfs:range schema:MedicalStudyStatus;
    rdfs:isDefinedBy <http://schema.org/MedicalStudy>;
    .
schema:storageRequirements a rdf:Property;
    rdfs:label "Storage Requirements"@en;
    rdfs:comment "Storage requirements (free space required)."@en;
    rdfs:domain schema:SoftwareApplication;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string rdfs:Resource) ];
    rdfs:isDefinedBy <http://schema.org/SoftwareApplication>;
    .
schema:streetAddress a rdf:Property;
    rdfs:label "Street Address"@en;
    rdfs:comment "The street address. For example, 1600 Amphitheatre Pkwy."@en;
    rdfs:domain schema:PostalAddress;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/PostalAddress>;
    .
schema:strengthUnit a rdf:Property;
    rdfs:label "Strength Unit"@en;
    rdfs:comment "The units of an active ingredient's strength, e.g. mg."@en;
    rdfs:domain schema:DrugStrength;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DrugStrength>;
    .
schema:strengthValue a rdf:Property;
    rdfs:label "Strength Value"@en;
    rdfs:comment "The value of an active ingredient's strength, e.g. 325."@en;
    rdfs:domain schema:DrugStrength;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/DrugStrength>;
    .
schema:structuralClass a rdf:Property;
    rdfs:label "Structural Class"@en;
    rdfs:comment "The name given to how bone physically connects to each other."@en;
    rdfs:domain schema:Joint;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Joint>;
    .
schema:study a rdf:Property;
    rdfs:label "Study"@en;
    rdfs:comment "A medical study or trial related to this entity."@en;
    rdfs:domain schema:MedicalEntity;
    rdfs:range schema:MedicalStudy;
    rdfs:isDefinedBy <http://schema.org/MedicalEntity>;
    .
schema:studyDesign a rdf:Property;
    rdfs:label "Study Design"@en;
    rdfs:comment "Specifics about the observational study design (enumerated)."@en;
    rdfs:domain schema:MedicalObservationalStudy;
    rdfs:range schema:MedicalObservationalStudyDesign;
    rdfs:isDefinedBy <http://schema.org/MedicalObservationalStudy>;
    .
schema:studyLocation a rdf:Property;
    rdfs:label "Study Location"@en;
    rdfs:comment "The location in which the study is taking/took place."@en;
    rdfs:domain schema:MedicalStudy;
    rdfs:range schema:AdministrativeArea;
    rdfs:isDefinedBy <http://schema.org/MedicalStudy>;
    .
schema:studySubject a rdf:Property;
    rdfs:label "Study Subject"@en;
    rdfs:comment "A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study."@en;
    rdfs:domain schema:MedicalStudy;
    rdfs:range schema:MedicalEntity;
    rdfs:isDefinedBy <http://schema.org/MedicalStudy>;
    .
schema:subEvent a rdf:Property;
    rdfs:label "Sub Event"@en;
    rdfs:comment "An Event that is part of this event. For example, a conference event includes many presentations, each are a subEvent of the conference."@en;
    rdfs:domain schema:Event;
    rdfs:range schema:Event;
    rdfs:isDefinedBy <http://schema.org/Event>;
    .
schema:subEvents a rdf:Property;
    rdfs:label "Sub Events"@en;
    rdfs:comment "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)."@en;
    rdfs:domain schema:Event;
    rdfs:range schema:Event;
    rdfs:isDefinedBy <http://schema.org/Event>;
    .
schema:subStageSuffix a rdf:Property;
    rdfs:label "Sub Stage Suffix"@en;
    rdfs:comment "The substage, e.g. 'a' for Stage IIIa."@en;
    rdfs:domain schema:MedicalConditionStage;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalConditionStage>;
    .
schema:subStructure a rdf:Property;
    rdfs:label "Sub Structure"@en;
    rdfs:comment "Component (sub-)structure(s) that comprise this anatomical structure."@en;
    rdfs:domain schema:AnatomicalStructure;
    rdfs:range schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/AnatomicalStructure>;
    .
schema:subTest a rdf:Property;
    rdfs:label "Sub Test"@en;
    rdfs:comment "A component test of the panel."@en;
    rdfs:domain schema:MedicalTestPanel;
    rdfs:range schema:MedicalTest;
    rdfs:isDefinedBy <http://schema.org/MedicalTestPanel>;
    .
schema:subtype a rdf:Property;
    rdfs:label "Subtype"@en;
    rdfs:comment "A more specific type of the condition, where applicable, for example 'Type 1 Diabetes', 'Type 2 Diabetes', or 'Gestational Diabetes' for Diabetes."@en;
    rdfs:domain schema:MedicalCondition;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:successorOf a rdf:Property;
    rdfs:label "Successor of"@en;
    rdfs:comment "A pointer from a newer variant of a product  to its previous, often discontinued predecessor."@en;
    rdfs:domain schema:ProductModel;
    rdfs:range schema:ProductModel;
    rdfs:isDefinedBy <http://schema.org/ProductModel>;
    .
schema:sugarContent a rdf:Property;
    rdfs:label "Sugar Content"@en;
    rdfs:comment "The number of grams of sugar."@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range schema:Mass;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:suggestedGender a rdf:Property;
    rdfs:label "Suggested Gender"@en;
    rdfs:comment "The gender of the person or audience."@en;
    rdfs:domain schema:PeopleAudience;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/PeopleAudience>;
    .
schema:suggestedMaxAge a rdf:Property;
    rdfs:label "Suggested Max Age"@en;
    rdfs:comment "Maximal age recommended for viewing content"@en;
    rdfs:domain schema:PeopleAudience;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/PeopleAudience>;
    .
schema:suggestedMinAge a rdf:Property;
    rdfs:label "Suggested Min Age"@en;
    rdfs:comment "Minimal age recommended for viewing content"@en;
    rdfs:domain schema:PeopleAudience;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/PeopleAudience>;
    .
schema:superEvent a rdf:Property;
    rdfs:label "Super Event"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:Event;
    rdfs:range schema:Event;
    rdfs:isDefinedBy <http://schema.org/Event>;
    .
schema:supplyTo a rdf:Property;
    rdfs:label "Supply to"@en;
    rdfs:comment "The area to which the artery supplies blood to."@en;
    rdfs:domain schema:Artery;
    rdfs:range schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Artery>;
    .
schema:targetDescription a rdf:Property;
    rdfs:label "Target Description"@en;
    rdfs:comment "The description of a node in an established educational framework."@en;
    rdfs:domain schema:AlignmentObject;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/AlignmentObject>;
    .
schema:targetName a rdf:Property;
    rdfs:label "Target Name"@en;
    rdfs:comment "The name of a node in an established educational framework."@en;
    rdfs:domain schema:AlignmentObject;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/AlignmentObject>;
    .
schema:targetPlatform a rdf:Property;
    rdfs:label "Target Platform"@en;
    rdfs:comment "Type of app development: phone, Metro style, desktop, XBox, etc."@en;
    rdfs:domain schema:APIReference;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/APIReference>;
    .
schema:targetPopulation a rdf:Property;
    rdfs:label "Target Population"@en;
    rdfs:comment "Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:DietarySupplement schema:DoseSchedule) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/DietarySupplement>;
    rdfs:isDefinedBy <http://schema.org/DoseSchedule>;
    .
schema:targetProduct a rdf:Property;
    rdfs:label "Target Product"@en;
    rdfs:comment "Target Operating System / Product to which the code applies.  If applies to several versions, just the product name can be used."@en;
    rdfs:domain schema:Code;
    rdfs:range schema:SoftwareApplication;
    rdfs:isDefinedBy <http://schema.org/Code>;
    .
schema:targetUrl a rdf:Property;
    rdfs:label "Target Url"@en;
    rdfs:comment "The URL of a node in an established educational framework."@en;
    rdfs:domain schema:AlignmentObject;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/AlignmentObject>;
    .
schema:taxID a rdf:Property;
    rdfs:label "Tax ID"@en;
    rdfs:comment "The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:telephone a rdf:Property;
    rdfs:label "Telephone"@en;
    rdfs:comment "The telephone number."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:ContactPoint schema:Place schema:Person) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/ContactPoint>;
    rdfs:isDefinedBy <http://schema.org/Place>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:temporal a rdf:Property;
    rdfs:label "Temporal"@en;
    rdfs:comment "The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format)."@en;
    rdfs:domain schema:Dataset;
    rdfs:range schema:DateTime;
    rdfs:isDefinedBy <http://schema.org/Dataset>;
    .
schema:text a rdf:Property;
    rdfs:label "Text"@en;
    rdfs:comment "The textual content of this CreativeWork."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:thumbnail a rdf:Property;
    rdfs:label "Thumbnail"@en;
    rdfs:comment "Thumbnail image for an image or video."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:VideoObject schema:ImageObject) ];
    rdfs:range schema:ImageObject;
    rdfs:isDefinedBy <http://schema.org/VideoObject>;
    rdfs:isDefinedBy <http://schema.org/ImageObject>;
    .
schema:thumbnailUrl a rdf:Property;
    rdfs:label "Thumbnail Url"@en;
    rdfs:comment "A thumbnail image relevant to the Thing."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:tickerSymbol a rdf:Property;
    rdfs:label "Ticker Symbol"@en;
    rdfs:comment "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."@en;
    rdfs:domain schema:Corporation;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Corporation>;
    .
schema:timeRequired a rdf:Property;
    rdfs:label "Time Required"@en;
    rdfs:comment "Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'P30M', 'P1H25M'."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:Duration;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:tissueSample a rdf:Property;
    rdfs:label "Tissue Sample"@en;
    rdfs:comment "The type of tissue sample required for the test."@en;
    rdfs:domain schema:PathologyTest;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/PathologyTest>;
    .
schema:title a rdf:Property;
    rdfs:label "Title"@en;
    rdfs:comment "The title of the job."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:totalTime a rdf:Property;
    rdfs:label "Total Time"@en;
    rdfs:comment "The total time it takes to prepare and cook the recipe, in ISO 8601 duration format."@en;
    rdfs:domain schema:Recipe;
    rdfs:range schema:Duration;
    rdfs:isDefinedBy <http://schema.org/Recipe>;
    .
schema:track a rdf:Property;
    rdfs:label "Track"@en;
    rdfs:comment "A music recording (track)—usually a single song."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MusicPlaylist schema:MusicGroup) ];
    rdfs:range schema:MusicRecording;
    rdfs:isDefinedBy <http://schema.org/MusicPlaylist>;
    rdfs:isDefinedBy <http://schema.org/MusicGroup>;
    .
schema:tracks a rdf:Property;
    rdfs:label "Tracks"@en;
    rdfs:comment "A music recording (track)—usually a single song (legacy spelling; see singular form, track)."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MusicPlaylist schema:MusicGroup) ];
    rdfs:range schema:MusicRecording;
    rdfs:isDefinedBy <http://schema.org/MusicPlaylist>;
    rdfs:isDefinedBy <http://schema.org/MusicGroup>;
    .
schema:trailer a rdf:Property;
    rdfs:label "Trailer"@en;
    rdfs:comment "The trailer of the movie or TV series, season, or episode."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TVEpisode schema:Movie schema:TVSeries schema:TVSeason) ];
    rdfs:range schema:VideoObject;
    rdfs:isDefinedBy <http://schema.org/TVEpisode>;
    rdfs:isDefinedBy <http://schema.org/Movie>;
    rdfs:isDefinedBy <http://schema.org/TVSeries>;
    rdfs:isDefinedBy <http://schema.org/TVSeason>;
    .
schema:transFatContent a rdf:Property;
    rdfs:label "Trans Fat Content"@en;
    rdfs:comment "The number of grams of trans fat."@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range schema:Mass;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:transcript a rdf:Property;
    rdfs:label "Transcript"@en;
    rdfs:comment "If this MediaObject is an AudioObject or VideoObject, the transcript of that object."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:AudioObject schema:VideoObject) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/AudioObject>;
    rdfs:isDefinedBy <http://schema.org/VideoObject>;
    .
schema:transmissionMethod a rdf:Property;
    rdfs:label "Transmission Method"@en;
    rdfs:comment "How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc."@en;
    rdfs:domain schema:InfectiousDisease;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/InfectiousDisease>;
    .
schema:trialDesign a rdf:Property;
    rdfs:label "Trial Design"@en;
    rdfs:comment "Specifics about the trial design (enumerated)."@en;
    rdfs:domain schema:MedicalTrial;
    rdfs:range schema:MedicalTrialDesign;
    rdfs:isDefinedBy <http://schema.org/MedicalTrial>;
    .
schema:tributary a rdf:Property;
    rdfs:label "Tributary"@en;
    rdfs:comment "The anatomical or organ system that the vein flows into; a larger structure that the vein connects to."@en;
    rdfs:domain schema:Vein;
    rdfs:range schema:AnatomicalStructure;
    rdfs:isDefinedBy <http://schema.org/Vein>;
    .
schema:typeOfGood a rdf:Property;
    rdfs:label "Type of Good"@en;
    rdfs:comment "The product that this structured value is referring to."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:OwnershipInfo schema:TypeAndQuantityNode) ];
    rdfs:range schema:Product;
    rdfs:isDefinedBy <http://schema.org/OwnershipInfo>;
    rdfs:isDefinedBy <http://schema.org/TypeAndQuantityNode>;
    .
schema:typicalAgeRange a rdf:Property;
    rdfs:label "Typical Age Range"@en;
    rdfs:comment "The typical range of ages the content's intendedEndUser, for example '7-9', '11-'."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:typicalTest a rdf:Property;
    rdfs:label "Typical Test"@en;
    rdfs:comment "A medical test typically performed given this condition."@en;
    rdfs:domain schema:MedicalCondition;
    rdfs:range schema:MedicalTest;
    rdfs:isDefinedBy <http://schema.org/MedicalCondition>;
    .
schema:unitCode a rdf:Property;
    rdfs:label "Unit Code"@en;
    rdfs:comment "The unit of measurement given using the UN/CEFACT Common Code (3 characters)."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:TypeAndQuantityNode schema:QuantitativeValue schema:UnitPriceSpecification) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/TypeAndQuantityNode>;
    rdfs:isDefinedBy <http://schema.org/QuantitativeValue>;
    rdfs:isDefinedBy <http://schema.org/UnitPriceSpecification>;
    .
schema:unsaturatedFatContent a rdf:Property;
    rdfs:label "Unsaturated Fat Content"@en;
    rdfs:comment "The number of grams of unsaturated fat."@en;
    rdfs:domain schema:NutritionInformation;
    rdfs:range schema:Mass;
    rdfs:isDefinedBy <http://schema.org/NutritionInformation>;
    .
schema:uploadDate a rdf:Property;
    rdfs:label "Upload Date"@en;
    rdfs:comment "Date when this media object was uploaded to this site."@en;
    rdfs:domain schema:MediaObject;
    rdfs:range xsd:date;
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    .
schema:url a rdf:Property;
    rdfs:label "URL"@en;
    rdfs:comment "URL of the item."@en;
    rdfs:domain schema:Thing;
    rdfs:range rdfs:Resource;
    rdfs:isDefinedBy <http://schema.org/Thing>;
    .
schema:usedToDiagnose a rdf:Property;
    rdfs:label "Used to Diagnose"@en;
    rdfs:comment "A condition the test is used to diagnose."@en;
    rdfs:domain schema:MedicalTest;
    rdfs:range schema:MedicalCondition;
    rdfs:isDefinedBy <http://schema.org/MedicalTest>;
    .
schema:usesDevice a rdf:Property;
    rdfs:label "Uses Device"@en;
    rdfs:comment "Device used to perform the test."@en;
    rdfs:domain schema:MedicalTest;
    rdfs:range schema:MedicalDevice;
    rdfs:isDefinedBy <http://schema.org/MedicalTest>;
    .
schema:validFrom a rdf:Property;
    rdfs:label "Valid From"@en;
    rdfs:comment "The beginning of the validity of offer, price specification, or opening hours data."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:OpeningHoursSpecification schema:Demand schema:PriceSpecification schema:Offer) ];
    rdfs:range schema:DateTime;
    rdfs:isDefinedBy <http://schema.org/OpeningHoursSpecification>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    rdfs:isDefinedBy <http://schema.org/PriceSpecification>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:validThrough a rdf:Property;
    rdfs:label "Valid Through"@en;
    rdfs:comment "The end of the validity of offer, price specification, or opening hours data."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:OpeningHoursSpecification schema:Demand schema:PriceSpecification schema:Offer) ];
    rdfs:range schema:DateTime;
    rdfs:isDefinedBy <http://schema.org/OpeningHoursSpecification>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    rdfs:isDefinedBy <http://schema.org/PriceSpecification>;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    .
schema:value a rdf:Property;
    rdfs:label "Value"@en;
    rdfs:comment "The value of the product characteristic."@en;
    rdfs:domain schema:QuantitativeValue;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/QuantitativeValue>;
    .
schema:valueAddedTaxIncluded a rdf:Property;
    rdfs:label "Value Added Tax Included"@en;
    rdfs:comment "Specifies whether the applicable value-added tax (VAT) is included in the price specification or not."@en;
    rdfs:domain schema:PriceSpecification;
    rdfs:range xsd:boolean;
    rdfs:isDefinedBy <http://schema.org/PriceSpecification>;
    .
schema:valueReference a rdf:Property;
    rdfs:label "Value Reference"@en;
    rdfs:comment "A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:QualitativeValue schema:QuantitativeValue) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:Enumeration schema:StructuredValue) ];
    rdfs:isDefinedBy <http://schema.org/QualitativeValue>;
    rdfs:isDefinedBy <http://schema.org/QuantitativeValue>;
    .
schema:vatID a rdf:Property;
    rdfs:label "Vat ID"@en;
    rdfs:comment "The Value-added Tax ID of the organisation or person."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Organization schema:Person) ];
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/Organization>;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:version a rdf:Property;
    rdfs:label "Version"@en;
    rdfs:comment "The version of the CreativeWork embodied by a specified resource."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range xsd:decimal;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:video a rdf:Property;
    rdfs:label "Video"@en;
    rdfs:comment "An embedded video object."@en;
    rdfs:domain schema:CreativeWork;
    rdfs:range schema:VideoObject;
    rdfs:isDefinedBy <http://schema.org/CreativeWork>;
    .
schema:videoFrameSize a rdf:Property;
    rdfs:label "Video Frame Size"@en;
    rdfs:comment "The frame size of the video."@en;
    rdfs:domain schema:VideoObject;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/VideoObject>;
    .
schema:videoQuality a rdf:Property;
    rdfs:label "Video Quality"@en;
    rdfs:comment "The quality of the video."@en;
    rdfs:domain schema:VideoObject;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/VideoObject>;
    .
schema:warning a rdf:Property;
    rdfs:label "Warning"@en;
    rdfs:comment "Any FDA or other warnings about the drug (text or URL)."@en;
    rdfs:domain schema:Drug;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:string rdfs:Resource) ];
    rdfs:isDefinedBy <http://schema.org/Drug>;
    .
schema:warranty a rdf:Property;
    rdfs:label "Warranty"@en;
    rdfs:comment "The warranty promise(s) included in the offer."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:Offer schema:Demand) ];
    rdfs:range schema:WarrantyPromise;
    rdfs:isDefinedBy <http://schema.org/Offer>;
    rdfs:isDefinedBy <http://schema.org/Demand>;
    .
schema:warrantyScope a rdf:Property;
    rdfs:label "Warranty Scope"@en;
    rdfs:comment "The scope of the warranty promise."@en;
    rdfs:domain schema:WarrantyPromise;
    rdfs:range schema:WarrantyScope;
    rdfs:isDefinedBy <http://schema.org/WarrantyPromise>;
    .
schema:weight a rdf:Property;
    rdfs:label "Weight"@en;
    rdfs:comment "The weight of the product."@en;
    rdfs:domain schema:Product;
    rdfs:range schema:QuantitativeValue;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:width a rdf:Property;
    rdfs:label "Width"@en;
    rdfs:comment "The width of the item."@en;
    rdfs:domain [ a owl:Class; owl:unionOf (schema:MediaObject schema:Product) ];
    rdfs:range [ a owl:Class; owl:unionOf (schema:Distance schema:QuantitativeValue) ];
    rdfs:isDefinedBy <http://schema.org/MediaObject>;
    rdfs:isDefinedBy <http://schema.org/Product>;
    .
schema:wordCount a rdf:Property;
    rdfs:label "Word Count"@en;
    rdfs:comment "The number of words in the text of the Article."@en;
    rdfs:domain schema:Article;
    rdfs:range xsd:integer;
    rdfs:isDefinedBy <http://schema.org/Article>;
    .
schema:workHours a rdf:Property;
    rdfs:label "Work Hours"@en;
    rdfs:comment "The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm)."@en;
    rdfs:domain schema:JobPosting;
    rdfs:range xsd:string;
    rdfs:isDefinedBy <http://schema.org/JobPosting>;
    .
schema:workLocation a rdf:Property;
    rdfs:label "Work Location"@en;
    rdfs:comment "A contact location for a person's place of work."@en;
    rdfs:domain schema:Person;
    rdfs:range [ a owl:Class; owl:unionOf (schema:ContactPoint schema:Place) ];
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:workload a rdf:Property;
    rdfs:label "Workload"@en;
    rdfs:comment "Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure."@en;
    rdfs:domain schema:ExercisePlan;
    rdfs:range schema:Energy;
    rdfs:isDefinedBy <http://schema.org/ExercisePlan>;
    .
schema:worksFor a rdf:Property;
    rdfs:label "Works for"@en;
    rdfs:comment "Organizations that the person works for."@en;
    rdfs:domain schema:Person;
    rdfs:range schema:Organization;
    rdfs:isDefinedBy <http://schema.org/Person>;
    .
schema:worstRating a rdf:Property;
    rdfs:label "Worst Rating"@en;
    rdfs:comment "The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed."@en;
    rdfs:domain schema:Rating;
    rdfs:range [ a owl:Class; owl:unionOf (xsd:decimal xsd:string) ];
    rdfs:isDefinedBy <http://schema.org/Rating>;
    .
