void:inDataset leaf node


URI

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

Label

in dataset

Description

Points to the void:Dataset that a document is a part of.

Usage

DOMAINPROPERTYRANGE
foaf:Document void:inDataset void:Dataset

Implementation

@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@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:inDataset a rdf:Property ;
    rdfs:label "in dataset" ;
    rdfs:comment "Points to the void:Dataset that a document is a part of." ;
    rdfs:domain foaf:Document ;
    rdfs:range void:Dataset .