schema1: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
schema1:Person schema1:affiliation schema1: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 schema1: <http://schema.org/> .

schema1:affiliation a rdf:Property ;
    rdfs:label "affiliation" ;
    schema1:domainIncludes schema1:Person ;
    schema1:rangeIncludes schema1:Organization ;
    rdfs:comment "An organization that this person is affiliated with. For example, a school/university, a club, or a team." .