rescs:dash/archivecomponent/ArchiveComponentShape leaf node


URI

http://rescs.org/dash/archivecomponent/ArchiveComponentShape

Label

Archive component

Description

An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections.

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/archivecomponent/ArchiveComponentShape> a sh:NodeShape ;
    rdfs:label "Archive component"^^xsd:string ;
    rdfs:comment "An intangible type to be applied to any archive content, carrying with it a set of properties required to describe archival items and collections."^^xsd:string ;
    sh:and ( [ sh:node <http://rescs.org/dash/creativework/CreativeWorkShape> ] [ sh:property [ sh:class schema:Place ;
                        sh:description "Current location of the item." ;
                        sh:maxCount 1 ;
                        sh:name "itemLocation" ;
                        sh:nodeKind sh:IRI ;
                        sh:path schema:itemLocation ],
                    [ sh:class schema:ArchiveOrganization ;
                        sh:description "[[ArchiveOrganization]] that holds, keeps or maintains the [[ArchiveComponent]]." ;
                        sh:name "holdingArchive" ;
                        sh:nodeKind sh:IRI ;
                        sh:path schema:holdingArchive ] ] ) ;
    sh:targetClass schema:ArchiveComponent .