made by pyLODE 2.8.10

A Project ontology

Metadata

URI
http://linked.data.gov.au/def/project
Creator(s)
None Orcid logo
Contributor(s)
Peter Brenton, CSIRO
Created
2017-08-14
Modified
2020-04-24
Imports
dct:
http://www.w3.org/2004/02/skos/core
http://www.w3.org/ns/prov
https://www.w3.org/ns/dx/prof
License
https://creativecommons.org/licenses/by/4.0/
Ontology RDF
RDF (turtle)

Description

The PROJECT ontology is designed to enable publication of information describing projects, including research projects. It is not designed to support project management, though sub-activities are included. As far as possible PROJECT is intended to be domain-neutral, and it is expected that domains and applications will specialize or extend this ontology for more specific purposes.

The ontology gives terms to support the representation of:

One specialization is included - the Research Project - which has been the subject of several predecessor designs that have informed the design of this ontology.

PROJECT extends the W3C PROV-O ontology. Otherwise, it has no dependencies except for the normal RDF/OWL infrastructure (RDF [rdf11-concepts], RDFS [rdf-schema], OWL [owl2-quick-reference]), Dublin Core [dc-terms] for some ontology metadata, and SKOS [skos-reference] to support some relationships between Role values, and project classification.

A summary of the main classes and relationships in PROJECT is shown in the diagram below, including the key superclass prov:Activity.

summary of PROJECT ontology

Core classes from PROJECT vocabulary.

Table of Contents

  1. Classes
  2. Object Properties
  3. Datatype Properties
  4. Namespaces
  5. Legend

Overview

Pictures say 1,000 words
Figure 1: Ontology overview

Classes

Funding associationc

URI http://linked.data.gov.au/def/project#FundingAssociation
Description

Association to a funder and a sum of money

Project funding association

Example

ex:FA3
  rdf:type proj:FundingAssociation ;
  rdfs:label "Level crossing removal project phase 1 funding arrangement" ;
  rdfs:seeAlso <http://www.premier.vic.gov.au/contract-awarded-for-first-four-level-crossing-removals/> ;
  proj:fundsProvided [
    rdf:type proj:SumOfMoney ;
    proj:moneyAmount "524000000"^^xsd:decimal ;
    proj:moneyCurrency <https://dbpedia.org/resource/Australian_dollar> ;
  ] ;
  prov:agent <http://www.vic.gov.au/> ;
 .

                    
Super-classes prov:Associationc
Restrictions http://linked.data.gov.au/def/project#fundsProvidedop min 1
prov:agent exactly 1
prov:hadRole value http://linked.data.gov.au/def/project/Funderc
In domain of http://linked.data.gov.au/def/project#grantNumberdp
http://linked.data.gov.au/def/project#fundingSchemeop
In range of http://linked.data.gov.au/def/project#wasFundedThroughop

Projectc

URI http://linked.data.gov.au/def/project#Project
Description

A Project is a planned activity with a budget, a sponsor, and a leader.

Project stakeholders are indicated using prov:wasAssociatedWith or the prov:qualifiedAssociation structure which allows their role to be catpured. Some special stakeholders have specific sub-properties with the roles fixed, including project-leader, project-participant, and project-funder.

Activities within a project are indicated using the proj:hasSubActivity (simple) or proj:subActivityAssociation properties - the latter allowing the nature of the relationshp to be described as well.

Project details

Example

ex:Project1
rdf:type proj:Project ;
rdfs:label "Victoria level-crossing removal - phase 1" ;
proj:hadBudgetTotal [
  rdf:type proj:SumOfMoney ;
  rdfs:label "Level crossing removal phase 1 budget" ;
  proj:moneyAmount "524000000"^^xsd:decimal ;
  proj:moneyCurrency <https://dbpedia.org/resource/Australian_dollar> ;
] ;
proj:hadLeader ex:johnholland-kbr ;
proj:hadSponsor <http://levelcrossings.vic.gov.au/about/about-the-authority> ;
proj:hadSubActivity ex:BentleighLevelCrossingRemoval ;
proj:hadSubActivity ex:BurkeRoadLevelCrossingRemoval ;
proj:hadSubActivity ex:McKinnonRoadLevelCrossingRemoval ;
proj:hadSubActivity ex:NorthRoadLevelCrossingRemoval ;
proj:wasFundedThrough [
  rdf:type proj:FundingAssociation ;
  rdfs:label "Level crossing removal project phase 1 funding arrangement" ;
  rdfs:seeAlso <http://www.premier.vic.gov.au/contract-awarded-for-first-four-level-crossing-removals/> ;
  proj:fundsProvided [
    rdf:type proj:SumOfMoney ;
    proj:moneyAmount "524000000"^^xsd:decimal ;
    proj:moneyCurrency <https://dbpedia.org/resource/Australian_dollar> ;
  ] ;
  prov:agent <http://www.vic.gov.au/> ;
] ;
rdfs:label "Victoria level-crossing removal - phase 1" ;
proj:plannedEnd "2017-03-31"^^xsd:date ;
proj:plannedStart "2015-10-01"^^xsd:date ;
prov:atLocation <https://dbpedia.org/resource/Melbourne> ;
prov:endedAtTime "2016-10-31T00:00:00"^^xsd:dateTime ;
prov:startedAtTime "2015-10-01T00:00:00"^^xsd:dateTime ;
.

                    
Super-classes prov:Activityc
Restrictions http://linked.data.gov.au/def/project#hadSponsorop min 1
http://linked.data.gov.au/def/project#plannedEnddp exactly 1
http://linked.data.gov.au/def/project#hadBudgetTotalop exactly 1
http://linked.data.gov.au/def/project#hadLeaderop min 1
http://linked.data.gov.au/def/project#hadPlanop min 1
http://linked.data.gov.au/def/project#plannedStartdp exactly 1
Sub-classes http://linked.data.gov.au/def/project#ResearchProjectc
In domain of http://linked.data.gov.au/def/project#hadAreaOfInterestop
http://linked.data.gov.au/def/project#hadSponsorop
http://linked.data.gov.au/def/project#wasFundedThroughop
http://linked.data.gov.au/def/project#hadObjectivedp
http://linked.data.gov.au/def/project#hadPlanop
http://linked.data.gov.au/def/project#hadBudgetTotalop

Research Projectc

URI http://linked.data.gov.au/def/project#ResearchProject
Description

A research project is a project that has

  • one or more PIs who are individual persons, and
  • should be classified according to standard research classification, such as the Australian Bureau of Statistics ANZSRC-FOR or NASA's Global Change Master Directory - Science Keywords.
Example

ex:Project2
rdf:type proj:Project ;
rdf:type proj:ResearchProject ;
rdfs:label "Improved management of feral animals in remote tropical Australia" ;
proj:budgetTotal [
  rdf:type proj:SumOfMoney ;
  proj:moneyAmount 0 ;
  proj:moneyCurrency <https://dbpedia.org/resource/Australian_dollar> ;
] ;
proj:hadFieldOfResearch <http://purl.org/au-research/vocabulary/anzsrc-for/2008/050202> ;
proj:hadPrincipalInvestigator <http://orcid.org/0000-0002-5823-7364> ;
proj:hadSponsor <http://dbpedia.org/resource/Commonwealth_Scientific_and_Industrial_Research_Organisation> ;
proj:hadSubActivity ex:Aerial ;
proj:wasSubActivityOf <http://www.environment.gov.au/science/nesp> ;
rdfs:label "Improved management of feral animals in remote tropical Australia" ;
proj:hadObjective "To develop a robust understanding of the costs and benefits of selected feral animal control programs on reducing impacts to natural and cultural values." ;
proj:plannedEnd "2022-12-31"^^xsd:date ;
proj:plannedStart "2012-12-31"^^xsd:date ;
proj:projectParticipant <mailto:peter.brenton@csiro.au> ;
proj:hadPlan ex:FCY-project-plan ;
proj:wasFundedThrough [
  rdf:type proj:FundingAssociation ;
  proj:fundsProvided [
    rdf:type proj:SumOfMoney ;
    proj:moneyAmount 0 ;
    proj:moneyCurrency <https://dbpedia.org/resource/Australian_dollar> ;
  ] ;
  prov:agent <http://dbpedia.org/resource/Government_of_Australia> ;
] ;
prov:atLocation <http://dbpedia.org/resource/Archer_River,_Queensland> ;
prov:generated <https://doi.org/10.1071/WF15133> ;
prov:startedAtTime "2012-12-31T00:00:00"^^xsd:dateTime ;
.

                    
Super-classes http://linked.data.gov.au/def/project#Projectc
Restrictions http://linked.data.gov.au/def/project#hadFieldOfResearchop min 1
In domain of http://linked.data.gov.au/def/project#hadPrincipalInvestigatorop
http://linked.data.gov.au/def/project#hadFieldOfResearchop

Sum of moneyc

URI http://linked.data.gov.au/def/project#SumOfMoney
Description

A sum of money, expressed as an amount and a specified currency

Example

ex:SM4
    rdf:type proj:SumOfMoney ;
    proj:moneyAmount "524000000"^^xsd:decimal ;
    proj:moneyCurrency <https://dbpedia.org/resource/Australian_dollar> ;
 .

                    
Super-classes owl:Thingc
Restrictions http://linked.data.gov.au/def/project#moneyAmountdp exactly 1
http://linked.data.gov.au/def/project#moneyCurrencyop exactly 1
In domain of http://linked.data.gov.au/def/project#moneyCurrencyop
http://linked.data.gov.au/def/project#moneyAmountdp
In range of http://linked.data.gov.au/def/project#hadBudgetTotalop
http://linked.data.gov.au/def/project#fundsProvidedop

Object Properties

pointer to funding-schemeop

URI http://linked.data.gov.au/def/project#fundingScheme
Description Link to description of funding scheme, e.g. - [European Commission Horizon 2020](https://ec.europa.eu/programmes/horizon2020/) - [Australian National Collaborative Research Infrastructure Strategy](https://www.education.gov.au/national-collaborative-research-infrastructure-strategy-ncris)
Domain(s) http://linked.data.gov.au/def/project#FundingAssociationc

funding providedop

URI http://linked.data.gov.au/def/project#fundsProvided
Description Link to a sum of money.
Range(s) http://linked.data.gov.au/def/project#SumOfMoneyc

has area of interestop

URI http://linked.data.gov.au/def/project#hadAreaOfInterest
Description Address, place, locality, location, etc
Super-properties prov:atLocation
Domain(s) http://linked.data.gov.au/def/project#Projectc
Range(s) dct:Locationc

total project budgetop

URI http://linked.data.gov.au/def/project#hadBudgetTotal
Description Basic funding arrangements are captured through the `proj:hadSponsor` and `proj:hadBudgetTotal` properties. More complex arrangements, for example if multiple funders are involved, can be captured through the `proj:wasFundedThrough` property, which links a funding agent with a funding amount in the context of a project.
Domain(s) http://linked.data.gov.au/def/project#Projectc
Range(s) http://linked.data.gov.au/def/project#SumOfMoneyc

field of researchop

URI http://linked.data.gov.au/def/project#hadFieldOfResearch
Description The field of research of the research project.
Scope Notes The value is usually taken from a curated vocabulary, such as [ANZSRC Fields of Research](http://www.abs.gov.au/ausstats/abs@.nsf/0/6BB427AB9696C225CA2574180004463E), [Re3data subjects](http://www.re3data.org/browse/by-subject/), [EDAM Topic](http://edamontology.org/topic_0003) or [Scigraph subjects](https://github.com/springernature/scigraph/wiki)
Super-properties dct:subject
Domain(s) http://linked.data.gov.au/def/project#ResearchProjectc
Range(s) skos:Conceptc

leaderop

URI http://linked.data.gov.au/def/project#hadLeader
Description There are a number of distinctive stakeholders in a project, in particular: a leader who is accountable for the delivery of project outcomes; a sponsor under whose authority the project is undertaken; funders; and project staff or participants. In some cases it is useful to provide specific details of a participant's role in the project. PROJECT provides a number of ways to represent the relationships of stakeholders to projects and activities. The standard role of _leader_ is implemented as a directly named property from an `prov:Activity` to a `prov:Agent`, and _sponsor_ as a directly named property from a `proj:Project` to a `prov:Agent`. We distinguish one sub-class, the `proj:ResearchProject`, in which the leader(s) is known as a _Principal Investigator_, and which is classified according to its _field of research_.
Super-properties prov:wasAssociatedWith
Range(s) prov:Personc

Project planop

URI http://linked.data.gov.au/def/project#hadPlan
Description The project plan.
Super-properties prov:used
Domain(s) http://linked.data.gov.au/def/project#Projectc
Range(s) prov:Planc

principal investigatorop

URI http://linked.data.gov.au/def/project#hadPrincipalInvestigator
Description The person who acts as principal investigator on the research project.
Super-properties http://linked.data.gov.au/def/project#hadLeaderop
Domain(s) http://linked.data.gov.au/def/project#ResearchProjectc

had related activityop

URI http://linked.data.gov.au/def/project#hadRelatedActivity
Description Link from an activity to a related activity.
Super-properties prov:qualifiedInfluence
Inverse properties prov:activity
Domain(s) prov:Activityc
Range(s) prov:ActivityInfluencec

activity sponsorop

URI http://linked.data.gov.au/def/project#hadSponsor
Description There are a number of distinctive stakeholders in a project, in particular: a leader who is accountable for the delivery of project outcomes; a sponsor under whose authority the project is undertaken; funders; and project staff or participants. In some cases it is useful to provide specific details of a participant's role in the project. PROJECT provides a number of ways to represent the relationships of stakeholders to projects and activities. Basic funding arrangements are captured through the `proj:hadSponsor` and `proj:hadBudgetTotal` properties. More complex arrangements, for example if multiple funders are involved, can be captured through the `proj:wasFundedThrough` property, which links a funding agent with a funding amount in the context of a project. ![Project funding association](../images/Project-funding.png)
Super-properties prov:wasAssociatedWith
Domain(s) http://linked.data.gov.au/def/project#Projectc

has sub-activityop

URI http://linked.data.gov.au/def/project#hadSubActivity
Description Relationship from an activity to a subsidiary activity.
Domain(s) prov:Activityc
Range(s) prov:Activityc

currency of a sum of moneyop

URI http://linked.data.gov.au/def/project#moneyCurrency
Domain(s) http://linked.data.gov.au/def/project#SumOfMoneyc

had funding associationop

URI http://linked.data.gov.au/def/project#wasFundedThrough
Description Basic funding arrangements are captured through the `proj:hadSponsor` and `proj:hadBudgetTotal` properties. More complex arrangements, for example if multiple funders are involved, can be captured through the `proj:wasFundedThrough` property, which links a funding agent with a funding amount in the context of a project. ![Project funding association](../images/Project-funding.png)
Domain(s) http://linked.data.gov.au/def/project#Projectc
Range(s) http://linked.data.gov.au/def/project#FundingAssociationc

is sub-activity ofop

URI http://linked.data.gov.au/def/project#wasSubActivityOf
Description Relationship from an activity to its parent activity or project.
Super-properties prov:wasInformedBy
Inverse properties http://linked.data.gov.au/def/project#hadSubActivityop

Datatype Properties

grant or contract numberdp

URI http://linked.data.gov.au/def/project#grantNumber
Description The grant or contract number assigned to the funding arrangement by the funder. 'Grant number' is common for research or charitable projects, 'Contract number' in a commercial context.
Domain(s) http://linked.data.gov.au/def/project#FundingAssociationc
Range(s) xsd:stringc

project objectivedp

URI http://linked.data.gov.au/def/project#hadObjective
Description Textual description of project objective.
Domain(s) http://linked.data.gov.au/def/project#Projectc

Money amountdp

URI http://linked.data.gov.au/def/project#moneyAmount
Description Numeric value of a sum of money, which must be scaled by a specified currency to get the actual value
Domain(s) http://linked.data.gov.au/def/project#SumOfMoneyc
Range(s) xsd:decimalc

planned end-date|timedp

URI http://linked.data.gov.au/def/project#plannedEnd
Description The date and time at which an activity was planned to end. See also project:plannedStart.
Scope Notes Usually an xsd:date or xsd:dateTime

planned start-date|timedp

URI http://linked.data.gov.au/def/project#plannedStart
Description The date and time at which an activity was planned to start. See also project:plannedEnd.
Scope Notes Usually an xsd:date or xsd:dateTime

Namespaces

dct
http://purl.org/dc/terms/
owl
http://www.w3.org/2002/07/owl#
prof
http://www.w3.org/ns/dx/prof/
prov
http://www.w3.org/ns/prov#
rdf
http://www.w3.org/1999/02/22-rdf-syntax-ns#
rdfs
http://www.w3.org/2000/01/rdf-schema#
schema
http://schema.org/
sdo
https://schema.org/
skos
http://www.w3.org/2004/02/skos/core#
xsd
http://www.w3.org/2001/XMLSchema#

Legend

cClasses
opObject Properties
fpFunctional Properties
dpData Properties
dpAnnotation Properties
pProperties
niNamed Individuals