void:property leaf node


URI

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

Label

property

Description

The rdf:Property that is the predicate of all triples in a property-based partition.

Usage

DOMAINPROPERTYRANGE
void:Dataset void:property rdf:Property

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:property a rdf:Property,
        owl:FunctionalProperty ;
    rdfs:label "property" ;
    rdfs:comment "The rdf:Property that is the predicate of all triples in a property-based partition." ;
    rdfs:domain void:Dataset ;
    rdfs:range rdf:Property .