rescs:dash/monetarygrant/MonetaryGrantShape leaf node


URI

http://rescs.org/dash/monetarygrant/MonetaryGrantShape

Label

Monetary grant

Description

A monetary grant.

Target Classes (1)

Shape Properties

Instances of schema1:MonetaryGrant can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

schema1:MonetaryGrant
schema1:amount 1 1 schema1:MonetaryAmount
schema1:funder 1
schema1:Grant
schema1:fundedItem 1
schema1:Thing
schema1:alternateName xsd:string
schema1:description 1
schema1:identifier 1
schema1:image 1
schema1:name 1 1 xsd:string
schema1:sameAs
schema1: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 schema1: <http://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://rescs.org/dash/monetarygrant/MonetaryGrantShape> a sh:NodeShape ;
    rdfs:label "Monetary grant"^^xsd:string ;
    rdfs:comment "A monetary grant."^^xsd:string ;
    sh:and ( [ sh:node <http://rescs.org/dash/grant/GrantShape> ] [ sh:property [ sh:description "A person or organization that supports a thing through a pledge, promise, or financial contribution. e.g. a sponsor of a Medical Study or a corporate sponsor of an event." ;
                        sh:minCount 1 ;
                        sh:name "funder" ;
                        sh:or ( [ sh:class schema1:Person ;
                                    sh:nodeKind sh:IRI ] [ sh:class schema1:Organization ;
                                    sh:nodeKind sh:IRI ] ) ;
                        sh:path schema1:funder ],
                    [ sh:class schema1:MonetaryAmount ;
                        sh:description "The amount of money." ;
                        sh:maxCount 1 ;
                        sh:minCount 1 ;
                        sh:name "amount" ;
                        sh:node <http://rescs.org/dash/monetaryamount/MonetaryAmountShape> ;
                        sh:nodeKind sh:BlankNode ;
                        sh:path schema1:amount ] ] ) ;
    sh:targetClass schema1:MonetaryGrant .