@prefix frapo: <http://purl.org/cerif/frapo/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .

frapo:hasGrantNumber a owl:DatatypeProperty ;
    rdfs:label "has grant number"@en ;
    vann:example """
        :european-commission
            frapo:awards :eu-grant .

        :eu-grant a frapo:Grant ;
            frapo:hasGrantNumber "282625" .
        """ ;
    vaem:rationale """
This is used to specify  the grant or award number associated with the funding awarded by some funder agent. 
More specifically, a `foaf:Agent` awards (`frapo:awards`) a grant (`frapo:Grant`) with a certain number associated to it (`frapo:hasGrantNumber`).
        """@en ;
    rdfs:comment "A data property specifying the grant number of a grant provided by a funding agency."@en ;
    rdfs:domain frapo:Grant ;
    rdfs:isDefinedBy frapo: ;
    vs:term_status reg:statusStable .

