void:rootResource leaf node


URI

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

Label

root resource

Description

A top concept or entry point for a void:Dataset that is structured in a tree-like fashion. All resources in a dataset can be reached by following links from its root resources in a small number of steps.

Usage

DOMAINPROPERTYRANGE
void:Dataset void:rootResource owl:Thing (inferred)

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:rootResource a rdf:Property ;
    rdfs:label "root resource" ;
    rdfs:comment "A top concept or entry point for a void:Dataset that is structured in a tree-like fashion. All resources in a dataset can be reached by following links from its root resources in a small number of steps." ;
    rdfs:domain void:Dataset .