klms:numNamespaces leaf node


URI

http://stelar-project.eu/klms#numNamespaces

Label

RDFGraph - Number of namespaces

Description

The number of namespaces of an RDF graph dataset.

Usage

DOMAINPROPERTYRANGE
klms:RDFGraph klms:numNamespaces xsd:int

Implementation

@prefix : <http://stelar-project.eu/klms#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:numNamespaces a owl:DatatypeProperty ;
    rdfs:label "RDFGraph - Number of namespaces"@en ;
    dcterms:identifier "klms:numNamespaces" ;
    vann:usageNote "Optional property. This property describes the number of namespaces of an RDF graph dataset."@en ;
    rdfs:comment "The number of namespaces of an RDF graph dataset."@en ;
    rdfs:domain :RDFGraph ;
    rdfs:range xsd:int .