http://schema.org/department
A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.
DOMAIN | PROPERTY | RANGE |
---|---|---|
schema:Organization | schema:department | schema:Organization |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
schema:department a rdf:Property ;
rdfs:label "department" ;
schema:domainIncludes schema:Organization ;
schema:rangeIncludes schema:Organization ;
rdfs:comment "A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe." .