:hasDiscipline leaf node


URI

http://purl.org/spar/fabio/hasDiscipline

Label

has discipline

Description

The discipline to which a subject vocabulary belongs.

Inherits from

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) :hasDiscipline :SubjectDiscipline

Implementation

@prefix : <http://purl.org/spar/fabio/> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

:hasDiscipline a owl:ObjectProperty ;
    rdfs:label "has discipline"@en ;
    rdfs:comment "The discipline to which a subject vocabulary belongs."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( :TermDictionary frbr:Endeavour ) ] ;
    rdfs:range :SubjectDiscipline ;
    rdfs:subPropertyOf owl:topObjectProperty ;
    owl:inverseOf :isDisciplineOf ;
    owl:propertyDisjointWith :isSchemeOf .