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 schema:MonetaryGrant can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

schema:MonetaryGrant
schema:amount 1 1 schema:MonetaryAmount
schema:funder 1
schema:Grant
schema:fundedItem 1
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/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 schema:Person ;
                                    sh:nodeKind sh:IRI ] [ sh:class schema:Organization ;
                                    sh:nodeKind sh:IRI ] ) ;
                        sh:path schema:funder ],
                    [ sh:class schema: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 schema:amount ] ] ) ;
    sh:targetClass schema:MonetaryGrant .