void:propertyPartition leaf node


URI

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

Label

property partition

Description

A subset of a void:Dataset that contains only the triples of a certain rdf:Property.

Inherits from

Usage

DOMAINPROPERTYRANGE
void:Dataset void:propertyPartition void:Dataset

Implementation

@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:propertyPartition a rdf:Property ;
    rdfs:label "property partition" ;
    rdfs:comment "A subset of a void:Dataset that contains only the triples of a certain rdf:Property." ;
    rdfs:domain void:Dataset ;
    rdfs:range void:Dataset ;
    rdfs:subPropertyOf void:subset .