schema:subOrganization leaf node


URI

http://schema.org/subOrganization

Label

subOrganization

Description

A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property.

Usage

DOMAINPROPERTYRANGE
schema:Organization schema:subOrganization 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:subOrganization a rdf:Property ;
    rdfs:label "subOrganization" ;
    schema:domainIncludes schema:Organization ;
    schema:rangeIncludes schema:Organization ;
    rdfs:comment "A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific 'department' property." .