oa:#hasScope leaf node


URI

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

Label

hasScope

Description

The relationship between a Specific Resource and the resource that provides the scope or context for it in this Annotation.

There MAY be 0 or more hasScope relationships for each Specific Resource.

Usage

DOMAINPROPERTYRANGE
oa:#SpecificResource oa:#hasScope 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:hasScope a owl:ObjectProperty ;
    rdfs:label "hasScope"@en ;
    rdfs:comment """The relationship between a Specific Resource and the resource that provides the scope or context for it in this Annotation.

There MAY be 0 or more hasScope relationships for each Specific Resource."""@en ;
    rdfs:domain oa:SpecificResource ;
    rdfs:isDefinedBy oa: .