void:distinctObjects leaf node


URI

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

Label

distinct objects

Description

The total number of distinct objects in a void:Dataset. In other words, the number of distinct resources that occur in the object position of triples in the dataset. Literals are included in this count.

Usage

DOMAINPROPERTYRANGE
void:Dataset void:distinctObjects xsd:integer

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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

void:distinctObjects a rdf:Property,
        owl:DatatypeProperty ;
    rdfs:label "distinct objects" ;
    rdfs:comment "The total number of distinct objects in a void:Dataset. In other words, the number of distinct resources that occur in the object position of triples in the dataset. Literals are included in this count." ;
    rdfs:domain void:Dataset ;
    rdfs:range xsd:integer .