http://schema.org/member
A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.
DOMAIN | PROPERTY | RANGE |
---|---|---|
schema:Organization | schema:member | schema:Organization , schema:Person |
@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:member a rdf:Property ;
rdfs:label "member" ;
schema:domainIncludes schema:Organization ;
schema:rangeIncludes schema:Organization,
schema:Person ;
rdfs:comment "A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals." .