http://www.w3.org/ns/oa#hasSource
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.
DOMAIN | PROPERTY | RANGE |
---|---|---|
oa:#SpecificResource | oa:#hasSource | owl:Thing (inferred) |
@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: .