skos:inScheme leaf node


URI

http://www.w3.org/2004/02/skos/core#inScheme

Label

is in scheme

Description

This property expresses the fact that a concept is a part of a scheme.

Inherits from

Usage

DOMAINPROPERTYRANGE
skos:Concept skos:inScheme skos:ConceptScheme

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

skos:inScheme a owl:ObjectProperty ;
    rdfs:label "is in scheme"@en ;
    rdfs:comment "This property expresses the fact that a concept is a part of a scheme."@en ;
    rdfs:domain skos:Concept ;
    rdfs:range skos:ConceptScheme ;
    rdfs:subPropertyOf owl:topObjectProperty .