void:class leaf node


URI

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

Label

class

Description

The rdfs:Class that is the rdf:type of all entities in a class-based partition.

Usage

DOMAINPROPERTYRANGE
void:Dataset void:class rdfs:Class

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