oa:#hasSource leaf node


URI

http://www.w3.org/ns/oa#hasSource

Label

hasSource

Description

The relationship between a oa:SpecificResource and the resource that it is a more specific representation of.

There MUST be exactly 1 oa:hasSource relationship associated with a Specific Resource.

Usage

DOMAINPROPERTYRANGE
oa:#SpecificResource oa:#hasSource owl:Thing (inferred)

Implementation

@prefix oa: <http://www.w3.org/ns/oa#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

oa:hasSource a owl:ObjectProperty ;
    rdfs:label "hasSource"@en ;
    rdfs:comment """The relationship between a oa:SpecificResource and the resource that it is a more specific representation of. 

There MUST be exactly 1 oa:hasSource relationship associated with a Specific Resource."""@en ;
    rdfs:domain oa:SpecificResource ;
    rdfs:isDefinedBy oa: .