schema:parentOrganization leaf node


URI

http://schema.org/parentOrganization

Label

parentOrganization

Description

The larger organization that this organization is a subOrganization of, if any.

Usage

DOMAINPROPERTYRANGE
schema:Organization schema:parentOrganization 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:parentOrganization a rdf:Property ;
    rdfs:label "parentOrganization" ;
    schema:domainIncludes schema:Organization ;
    schema:rangeIncludes schema:Organization ;
    rdfs:comment "The larger organization that this organization is a subOrganization of, if any." .