schema:member leaf node


URI

http://schema.org/member

Label

member

Description

A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.

Usage

DOMAINPROPERTYRANGE
schema:Organization schema:member schema:Person , 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: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." .