core:subject leaf node


URI

http://purl.org/vocab/frbr/core#subject

Label

has subject

Description

A work linked to a particular subject it is talking about.

Inherits from

Usage

DOMAINPROPERTYRANGE
core:Work , Blank node (see implementation) core:subject owl:Thing (inferred)

Implementation

@prefix core: <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#> .

core:subject a owl:ObjectProperty ;
    rdfs:label "has subject"@en ;
    rdfs:comment "A work linked to a particular subject it is talking about."@en ;
    rdfs:domain core:Work ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( core:CorporateBody core:Endeavour core:Subject ) ] ;
    rdfs:subPropertyOf owl:topObjectProperty .