schema:department leaf node


URI

http://schema.org/department

Label

department

Description

A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.

Usage

DOMAINPROPERTYRANGE
schema:Organization schema:department schema:Organization

Implementation

@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." .