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