schema1: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
schema1:Organization schema1:department schema1: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 schema1: <http://schema.org/> .

schema1:department a rdf:Property ;
    rdfs:label "department" ;
    schema1:domainIncludes schema1:Organization ;
    schema1:rangeIncludes schema1: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." .