schema:affiliation leaf node


URI

http://schema.org/affiliation

Label

affiliation

Description

An organization that this person is affiliated with. For example, a school/university, a club, or a team.

Usage

DOMAINPROPERTYRANGE
schema:Person schema:affiliation 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:affiliation a rdf:Property ;
    rdfs:label "affiliation" ;
    schema:domainIncludes schema:Person ;
    schema:rangeIncludes schema:Organization ;
    rdfs:comment "An organization that this person is affiliated with. For example, a school/university, a club, or a team." .