void:uriSpace leaf node


URI

http://rdfs.org/ns/void#uriSpace

Label

URI space

Description

A URI that is a common string prefix of all the entity URIs in a void:Dataset.

Usage

DOMAINPROPERTYRANGE
void:Dataset void:uriSpace rdfs:Literal

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix void: <http://rdfs.org/ns/void#> .

void:uriSpace a rdf:Property,
        owl:DatatypeProperty ;
    rdfs:label "URI space" ;
    rdfs:comment "A URI that is a common string prefix of all the entity URIs in a void:Dataset." ;
    rdfs:domain void:Dataset ;
    rdfs:range rdfs:Literal .