rescs:dash/project/ProjectShape leaf node


URI

http://rescs.org/dash/project/ProjectShape

Label

Project

Description

An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim. Use properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures.

Target Classes (1)

Shape Properties

Instances of schema:Project can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

schema:Project
schema:abstract 1
schema:endDate 1 xsd:date
schema:startDate 1 1 xsd:date
schema:Organization
schema:address 1 xsd:string
schema:contactPoint 1 schema:ContactPoint
schema:department schema:Organization
schema:email 1 xsd:string
schema:funder
schema:keywords
schema:member
schema:subOrganization schema:Organization
schema:Thing
schema:alternateName xsd:string
schema:description 1
schema:identifier 1
schema:image 1
schema:name 1 1 xsd:string
schema:sameAs
schema:url

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/project/ProjectShape> a sh:NodeShape ;
    rdfs:label "Project"^^xsd:string ;
    rdfs:comment "An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim. Use properties from [[Organization]], [[subOrganization]]/[[parentOrganization]] to indicate project sub-structures."^^xsd:string ;
    sh:and ( [ sh:node <http://rescs.org/dash/organization/OrganizationShape> ] [ sh:property [ sh:datatype xsd:date ;
                        sh:description "The start date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601))." ;
                        sh:lessThanOrEquals schema:endDate ;
                        sh:maxCount 1 ;
                        sh:minCount 1 ;
                        sh:name "startDate" ;
                        sh:path schema:startDate ],
                    [ sh:datatype xsd:date ;
                        sh:description "The end date and time of the item (in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601))." ;
                        sh:maxCount 1 ;
                        sh:name "endDate" ;
                        sh:path schema:endDate ],
                    [ sh:description "An abstract is a short description that summarizes a [[Project]]." ;
                        sh:maxCount 1 ;
                        sh:name "abstract" ;
                        sh:or ( [ sh:datatype xsd:string ] [ sh:datatype rdf:langString ] ) ;
                        sh:path schema:abstract ] ] ) ;
    sh:targetClass schema:Project .