rescs:dash/dataset/DatasetShape leaf node


URI

http://rescs.org/dash/dataset/DatasetShape

Label

Dataset

Description

A body of structured information describing some topic(s) of interest.

Target Classes (1)

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://rescs.org/dash/dataset/DatasetShape> a sh:NodeShape ;
    rdfs:label "Dataset"^^xsd:string ;
    rdfs:comment "A body of structured information describing some topic(s) of interest."^^xsd:string ;
    sh:and ( [ sh:node <http://rescs.org/dash/creativework/CreativeWorkShape> ] [ sh:property [ sh:class schema:DataDownload ;
                        sh:description "A downloadable form of this dataset, at a specific location, in a specific format." ;
                        sh:name "distribution" ;
                        sh:nodeKind sh:IRI ;
                        sh:path schema:distribution ] ] ) ;
    sh:targetClass schema:Dataset .