Funding, Research Administration and Projects Ontology (FRAPO)

URL
http://purl.org/cerif/frapo (alternative at w3id.org)
DOI
10.25504/FAIRsharing.0a2576
Documentation
http://purl.org/cerif/frapo.html
Source
http://purl.org/cerif/frapo.xml (RDF/XML)
http://purl.org/cerif/frapo.ttl (Turtle)
http://purl.org/cerif/frapo.nt (N-triples)
http://purl.org/cerif/frapo.json (JSON-LD)
Repository
https://github.com/sparontologies/frapo

*FRAPO*, the* Funding, Research Administration and Projects Ontology*, is a [CERIF-compliant](http://www.eurocris.org/cerif/main-features-cerif) ontology for describing administrative information relating to grant funding and research projects. It can be used for the characterization of grant applications (e.g., ``frapo:Grant``), funding bodies (e.g., ``frapo:University``), research projects (e.g., ``frapo:Project``), project partners, etc., in other words the sort of information stored in [Current Research Information Systems (CRIS)](http://www.eurocris.org/). It can also be used to describe other types of projects, for example building projects and educational projects. FRAPO, which is written in OWL 2 DL, imports [FOAF](http://xmlns.com/foaf/spec/) for characterizing people. FRAPO is designed to be used in conjunction with [SCoRO](/ontologies/scoro) that provides structured vocabulary terms to describe the contributions (``scoro:Contribution``) and roles of scholars (``pro:Role``), and the organizations of which they are members, with respect to projects, research investigations and other academic activities describable using FRAPO, and to the scholarly journal articles and other outputs that result from them, as shown in the following diagram. <img class="img-responsive center-block" src="/static/img/spar/frapo-diagram.png" alt="The diagram of FRAPO." /> Terms for documents of relevance to the scholarly domain covered by FRAPO, including grant applications, project plans, project reports, datasets and journal articles, are already provided by [FaBiO](/ontologies/fabio) and are therefore not included within FRAPO. FRAPO also permits descriptions of various types of applications, funding programs, infrastructure entities (e.g., services and research facilities), and a wide range of financial entities (e.g., accounts, contracts, quotations, purchases, invoices and payments), and the relationships between them (e.g., has application outcome, is manufactured by, is purchased by, has dispatch date, has purchase order number, has acronym) not shown in the diagram above.

Examples of use of FRAPO

  1. Describing fundings, investigations and research outputs

Describing fundings, investigations and research outputs

The specification of the connection between a research paper, the investigation done and discussed in it and the funds that allowed such investigation are important aspects to describe in the paper itself. Usually, such aspects are introduced in a footnote or, even better, in an appropriate acknowledgement section that describe them in natural language. The use of [FRAPO](/ontologies/frapo) in combination with other SPAR Ontologies such as [FaBiO](/ontologies/fabio) and [SCoRO](/ontologies/scoro) permits the description of the aforementioned aspects in RDF. For instance, the well-known paper published by a young Peter Mika and entitled "[Ontologies are us: a unified model of social networks and semantics](http://dx.doi.org/10.1016/j.websem.2006.11.002)" has been one of the outcomes of Mika's investigation founded by his Ph.D. scholarship. [FRAPO](/ontologies/frapo) allows one to explicitly describe all of this by means of its several classes and properties.

@prefix : <http://www.sparontologies.net/example/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix frapo: <http://purl.org/cerif/frapo/> .
@prefix person: <http://data.semanticweb.org/person/> .
@prefix org: <http://data.semanticweb.org/organization/> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix scoro: <http://purl.org/spar/scoro/> .

org:vrije-universiteit-amsterdam a frapo:University ;
    foaf:name "Free University Amsterdam"@en ;
    frapo:awards :phd-scholarship-2004 .

:investigation a frapo:Investigation ;
    frapo:hasOutput
        <http://dx.doi.org/10.1016/j.websem.2006.11.002> .

:phd-scholarship-2004 a frapo:Scholarship ;
    foaf:name "Ph.D. Scholarship 2004" ;
    frapo:funds :investigation .

person:peter-mika a foaf:Person ;
    foaf:name "Peter Mika" ;
        pro:holdsRoleInTime :affiliation-vua ;
        scoro:makesContribution
            :mika-writes-draft ,
            :mika-revises-manuscript .

:mika-writes-draft a scoro:ContributionSituation ;
    scoro:withContribution scoro:writes-manuscript-draft ;
    scoro:withContributionEffort scoro:solo-effort ;
    scoro:relatesToEntity
        <http://dx.doi.org/10.1016/j.websem.2006.11.002> .

:mika-revises-manuscript a scoro:ContributionSituation ;
    scoro:withContribution scoro:revises-manuscript ;
    scoro:withContributionEffort scoro:solo-effort ;
    scoro:relatesToEntity
        <http://dx.doi.org/10.1016/j.websem.2006.11.002> .

:affiliation-vua a pro:RoleInTime ;
    pro:withRole scoro:affiliate ;
    pro:relatesToOrganization org:vrije-universiteit-amsterdam ;
    pro:relatesToDocument
        <http://dx.doi.org/10.1016/j.websem.2006.11.002> .

Please cite the source above with the following reference:

Peroni, Silvio (2015): Example of use of FRAPO #1. figshare. http://dx.doi.org/10.6084/m9.figshare.1549721