Sign up now for Client Certification Foundation Course - June cohort!
Pure's logos
Pure Help Center for Pure Administrators

If you are a researcher, or other non-admin at your institution, click here.

  • Home
  • Announcements
  • Release Notes
  • Technical user guides
  • Training
  • Events
  • Support
  • Contact Us
  • Home
  • Training
  • Technical user guides
  • Integrations
  • Synchronizations
  • Content Type XML Documentation
  • UPM & Award Management

How Can We Help?

Search Results

Filter By Category

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Contact us

Funding Opportunity XMLFunding Opportunity XML

Overview

This page details the Funding Opportunity content type. On this page you will find different representations of the data elements contained within this type.

Below is the xsd for the Funding Opportunity content type that defines the import xml format. Also provided is mapping tables generated based on this XSD as well as an example xml that shows how the fields can be populated.

This is logical broken down into the different elements to help you gain a better understanding of the Funding Opportunity content type and how to create, read and update these records using the mechanisms provided in Pure.

Note: for the mapping tables all attributes and elements are listed, along with descriptions of the purposes of the field and any data requirements. Attribute are prefaced with an "@" to differentiate from elements, but as shown in the examples this isn't used when generating the xml.

Some elements offer options of which elements to include (such as whether to provide the ID of a person or organisation or name for lookup). These are denoted by reference to "Option Groups" where numbers are used to indicate where multiple elements are part of the same option. See example xmls for demonstrations of how to use these elements.

A Funding opportunity in Pure is a record with detailed information about research funding being available 
from a funder. This record contains information about the funder, the funding program, eligibility criteria, 
deadlines, award ceilings etc.

Below are a series of attachments for your reference:

  • Simple Example XML - This shows only the mandatory fields that need to be populated
  • Advanced Example XML - This shows all fields that can be used. Snippets of this file are shown with their related elements below.
  • XSD (Xml Schema Definition) - This is a definition of what structure the XML must follow. This page has been generated based on the contents of the xsd file, and snippets of the definition are shown with their relevant element below
  • Editor Example PNG - This image shows the result of loading the advanced example xml into Pure, to allow for easy reference of which fields in Pure point to which elements in the XML. Note that the way the data is presented within your Pure instance may be different due to different configuration
  • Webservice Example Response - This shows an example response of retrieving the record generated via this xml via the webservice

Download All


Funding Opportunities

fundingOpportunities

A list of fundingOpportunity elements of type fundingOpportunity

XML Example

<fundingOpportunities xmlns="v1.funding-opportunity.pure.atira.dk"
                              xmlns:cmns="v3.commons.pure.atira.dk"><!--
                For each funding opportunity to create in Pure there should be one of these elements.
                Type should be defined in the "Funding opportunity types" classification scheme
            -->
           <fundingOpportunity id="funding1" type="conf" managedInPure="false">
              <title>Title of Funding Opportunity</title>
              <description>Description of the funding opportunity</description>
              <!-- Can provide translations for supported submission languages -->
              <translatedTitles>
                 <title lang="de">Titel</title>
              </translatedTitles>
              <translatedDescriptions>
                 <description lang="de">Beschreibung</description>
              </translatedDescriptions>
              <!-- ID type should be defined in "Types of funding opportunity sources" classification scheme -->
              <ids>
                 <cmns:id type="fundingnumber">123896</cmns:id>
              </ids>
              <url>https://www.fundinginstitutional.com/</url>
              <fundingOrganisations><!-- Can provide just an ID or name and other details and Pure will attempt to match. If match is not found a new record will be created -->
                 <cmns:externalOrganisation>
                    <cmns:name>National Institute of Health (NIH)</cmns:name>
                    <cmns:type>government</cmns:type>
                    <cmns:country>us</cmns:country>
                 </cmns:externalOrganisation>
                 <cmns:externalOrganisation>
                    <cmns:externalOrgId>external_organisation_id_002</cmns:externalOrgId>
                 </cmns:externalOrganisation>
              </fundingOrganisations>
              <!-- YYYY-MM-DD format -->
              <openingDate>2023-01-05</openingDate>
              <deadline>2023-09-01</deadline>
              <letterOfIntentDate>2023-07-07</letterOfIntentDate>
              <!-- true or false -->
              <active>true</active>
              <awardCeiling>1000000</awardCeiling>
              <!-- Should be defined in the "Subset of ISO-4217 currencies" classification scheme -->
              <awardCeilingCurrency>USD</awardCeilingCurrency>
              <estimatedFunding>500000</estimatedFunding>
              <!-- Should be defined in the "Subset of ISO-4217 currencies" classification scheme -->
              <estimatedFundingCurrency>USD</estimatedFundingCurrency>
              <!-- true or false -->
              <limitedSubmission>true</limitedSubmission>
              <numberOfAnnualApplicationsPerHEI>10</numberOfAnnualApplicationsPerHEI>
              <numberOfAwards>50</numberOfAwards>
              <!-- true or false -->
              <openAccessRequirements>true</openAccessRequirements>
              <!-- Should be align with the configurations for Funding Opportunity under Adminsitration -> Keywords -->
              <keywords>
                 <keyword>Free text keyword</keyword>
                 <keyword lang="en" logicalName="cfdaKeywordContainers" key="10.217"/>
              </keywords>
              <!-- Elgibility requirements like gender, age or location -->
              <eligibilities>
                 <eligibility><!-- Type should be defined in "Funding opportunity eligibility types" classification scheme -->
                    <eligibilityType>women</eligibilityType>
                    <!-- RECOMMENDATION or REQUIREMENT -->
                    <eligibilityFulfilmentType>RECOMMENDATION</eligibilityFulfilmentType>
                 </eligibility>
                 <eligibility><!-- Type should be defined in "Funding opportunity eligibility types" classification scheme -->
                    <eligibilityType>nation</eligibilityType>
                    <!-- RECOMMENDATION or REQUIREMENT -->
                    <eligibilityFulfilmentType>REQUIREMENT</eligibilityFulfilmentType>
                 </eligibility>
              </eligibilities>
              <!-- Academic degree requirements for eligibility -->
              <academicEligibilities>
                 <eligibility><!-- Type should be defined in "Funding opportunity academic degree eligibility types" classification scheme -->
                    <eligibilityType>minimum_doctor_degree</eligibilityType>
                    <!-- RECOMMENDATION or REQUIREMENT -->
                    <eligibilityFulfilmentType>REQUIREMENT</eligibilityFulfilmentType>
                 </eligibility>
                 <eligibility><!-- Type should be defined in "Funding opportunity academic degree eligibility types" classification scheme -->
                    <eligibilityType>minimum_master_degree</eligibilityType>
                    <!-- RECOMMENDATION or REQUIREMENT -->
                    <eligibilityFulfilmentType>RECOMMENDATION</eligibilityFulfilmentType>
                 </eligibility>
              </academicEligibilities>
              <!-- Should be defined in "Funding opportunities: Nature of activity types" classification scheme -->
              <natureTypes>
                 <natureType>research</natureType>
                 <natureType>individual_grant</natureType>
              </natureTypes>
              <labels>
                 <cmns:label id="label1">
                    <cmns:text>Example Label</cmns:text>
                 </cmns:label>
                 <cmns:label id="label2">
                    <cmns:text>Another Label</cmns:text>
                 </cmns:label>
              </labels>
              <descriptionOfApplicationProcess>Description of steps involved to apply for the funding. Can include internal institution processes</descriptionOfApplicationProcess>
              <urlToApplicationSite>https://www.nih.gov/</urlToApplicationSite>
              <emailAddressForApplication>nhlbiinfo@nhlbi.nih.gov</emailAddressForApplication>
              <!-- true or false -->
              <recurring>true</recurring>
              <!-- Public, Campus, Restricted or Confidential -->
              <visibility>Public</visibility>
           </fundingOpportunity>
        </fundingOpportunities>
 
 

XSD Definition

<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema" name="fundingOpportunities">
           <xs:complexType>
              <xs:sequence>
                 <xs:element ref="fundingOpportunity" minOccurs="0" maxOccurs="unbounded"/>
              </xs:sequence>
              <xs:attribute name="resumptionToken" type="xs:string">
                 <xs:annotation>
                    <xs:documentation>
                                To enable resumption tokens, add an URL to the "XML source data location" in the job configuration with "{resumptionToken}" as a placeholder, for instance "https://example.org/data?resumptionToken={resumptionToken}".
                                The endpoint must handle the resumptionToken in the following manner:
                                If an empty resumptionToken is sent, the endpoint must return all data. If a non-empty resumptionToken is sent, the endpoint must return all data that has changed since the time the resumptionToken was sent.
                            </xs:documentation>
                 </xs:annotation>
              </xs:attribute>
           </xs:complexType>
        </xs:element>
 
 

fundingOpportunity

For each funding opportunity that should be created in Pure there should be a new instance of this element

XML Example

<fundingOpportunity xmlns="v1.funding-opportunity.pure.atira.dk"
                            xmlns:cmns="v3.commons.pure.atira.dk"
                            id="funding1"
                            type="conf"
                            managedInPure="false">
           <title>Title of Funding Opportunity</title>
           <description>Description of the funding opportunity</description>
           <!-- Can provide translations for supported submission languages -->
           <translatedTitles>
              <title lang="de">Titel</title>
           </translatedTitles>
           <translatedDescriptions>
              <description lang="de">Beschreibung</description>
           </translatedDescriptions>
           <!-- ID type should be defined in "Types of funding opportunity sources" classification scheme -->
           <ids>
              <cmns:id type="fundingnumber">123896</cmns:id>
           </ids>
           <url>https://www.fundinginstitutional.com/</url>
           <fundingOrganisations><!-- Can provide just an ID or name and other details and Pure will attempt to match. If match is not found a new record will be created -->
              <cmns:externalOrganisation>
                 <cmns:name>National Institute of Health (NIH)</cmns:name>
                 <cmns:type>government</cmns:type>
                 <cmns:country>us</cmns:country>
              </cmns:externalOrganisation>
              <cmns:externalOrganisation>
                 <cmns:externalOrgId>external_organisation_id_002</cmns:externalOrgId>
              </cmns:externalOrganisation>
           </fundingOrganisations>
           <!-- YYYY-MM-DD format -->
           <openingDate>2023-01-05</openingDate>
           <deadline>2023-09-01</deadline>
           <letterOfIntentDate>2023-07-07</letterOfIntentDate>
           <!-- true or false -->
           <active>true</active>
           <awardCeiling>1000000</awardCeiling>
           <!-- Should be defined in the "Subset of ISO-4217 currencies" classification scheme -->
           <awardCeilingCurrency>USD</awardCeilingCurrency>
           <estimatedFunding>500000</estimatedFunding>
           <!-- Should be defined in the "Subset of ISO-4217 currencies" classification scheme -->
           <estimatedFundingCurrency>USD</estimatedFundingCurrency>
           <!-- true or false -->
           <limitedSubmission>true</limitedSubmission>
           <numberOfAnnualApplicationsPerHEI>10</numberOfAnnualApplicationsPerHEI>
           <numberOfAwards>50</numberOfAwards>
           <!-- true or false -->
           <openAccessRequirements>true</openAccessRequirements>
           <!-- Should be align with the configurations for Funding Opportunity under Adminsitration -> Keywords -->
           <keywords>
              <keyword>Free text keyword</keyword>
              <keyword lang="en" logicalName="cfdaKeywordContainers" key="10.217"/>
           </keywords>
           <!-- Elgibility requirements like gender, age or location -->
           <eligibilities>
              <eligibility><!-- Type should be defined in "Funding opportunity eligibility types" classification scheme -->
                 <eligibilityType>women</eligibilityType>
                 <!-- RECOMMENDATION or REQUIREMENT -->
                 <eligibilityFulfilmentType>RECOMMENDATION</eligibilityFulfilmentType>
              </eligibility>
              <eligibility><!-- Type should be defined in "Funding opportunity eligibility types" classification scheme -->
                 <eligibilityType>nation</eligibilityType>
                 <!-- RECOMMENDATION or REQUIREMENT -->
                 <eligibilityFulfilmentType>REQUIREMENT</eligibilityFulfilmentType>
              </eligibility>
           </eligibilities>
           <!-- Academic degree requirements for eligibility -->
           <academicEligibilities>
              <eligibility><!-- Type should be defined in "Funding opportunity academic degree eligibility types" classification scheme -->
                 <eligibilityType>minimum_doctor_degree</eligibilityType>
                 <!-- RECOMMENDATION or REQUIREMENT -->
                 <eligibilityFulfilmentType>REQUIREMENT</eligibilityFulfilmentType>
              </eligibility>
              <eligibility><!-- Type should be defined in "Funding opportunity academic degree eligibility types" classification scheme -->
                 <eligibilityType>minimum_master_degree</eligibilityType>
                 <!-- RECOMMENDATION or REQUIREMENT -->
                 <eligibilityFulfilmentType>RECOMMENDATION</eligibilityFulfilmentType>
              </eligibility>
           </academicEligibilities>
           <!-- Should be defined in "Funding opportunities: Nature of activity types" classification scheme -->
           <natureTypes>
              <natureType>research</natureType>
              <natureType>individual_grant</natureType>
           </natureTypes>
           <labels>
              <cmns:label id="label1">
                 <cmns:text>Example Label</cmns:text>
              </cmns:label>
              <cmns:label id="label2">
                 <cmns:text>Another Label</cmns:text>
              </cmns:label>
           </labels>
           <descriptionOfApplicationProcess>Description of steps involved to apply for the funding. Can include internal institution processes</descriptionOfApplicationProcess>
           <urlToApplicationSite>https://www.nih.gov/</urlToApplicationSite>
           <emailAddressForApplication>nhlbiinfo@nhlbi.nih.gov</emailAddressForApplication>
           <!-- true or false -->
           <recurring>true</recurring>
           <!-- Public, Campus, Restricted or Confidential -->
           <visibility>Public</visibility>
        </fundingOpportunity>
 
 

XSD Definition

<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="fundingOpportunityType">
           <xs:annotation>
              <xs:documentation>For each funding opportunity that should be created in Pure there should be a new instance of this element</xs:documentation>
           </xs:annotation>
           <xs:all>
              <xs:element name="title" type="commons:string_1024">
                 <xs:annotation>
                    <xs:documentation>The title of the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="translatedTitles" type="translatedTitles" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Translated titles of the funding opportunity, use if there are different titles available for the submission languages supported in your Pure instance.</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="description" type="xs:string" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>The description of the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="translatedDescriptions"
                          type="translatedDescriptions"
                          minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Translated descriptions of the funding opportunity, use if there are different descriptions available for the submission languages supported in your Pure instance.</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="ids" type="commons:ids" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>The ids of the funding opportunity, type attribute must be a token from the classification scheme /dk/atira/pure/fundingopportunity/fundingopportunitysources</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="url" type="commons:string_1024" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>The url to full announcement to the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="fundingOrganisation"
                          type="commons:externalOrganisation"
                          minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>The external organisation that provides the funding opportunity. You can either specify an id to match an existing external organisation in you Pure or a name which will create an external organisation if one with that name does not exist.</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="fundingOrganisations"
                          type="commons:externalOrganisations"
                          minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>A colleciton of external organisations that provides the funding opportunity. You can either specify an id to match an existing external organisation in you Pure or a name which will create an external organisation if one with that name does not exist.</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="openingDate" type="commons:date" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>The opening date of the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="deadline" type="commons:date" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>The deadline of the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="letterOfIntentDate" type="commons:date" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>The letter of intent date of the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="active" type="xs:boolean" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Whether or not the funding opportunity is active</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="awardCeiling" type="xs:double" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Award ceiling of the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="awardCeilingCurrency"
                          type="commons:classification"
                          minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Currency of the award ceiling, must be a token from classification scheme /dk/atira/pure/core/isocurrencies, eg EUR</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="estimatedFunding" type="xs:double" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Estimated funding of the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="estimatedFundingCurrency"
                          type="commons:classification"
                          minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Currency of the estimated funding, must be a token from classification scheme /dk/atira/pure/core/isocurrencies, eg EUR</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="limitedSubmission" type="xs:boolean" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Whether or not the funding opportunity has limited submission</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="numberOfAnnualApplicationsPerHEI" type="xs:int" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Number of annual applications per Higher Education Institute for the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="numberOfAwards" type="xs:int" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Number of awards for the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="openAccessRequirements" type="xs:boolean" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Whether or not the funding opportunity has open access requirements</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="keywords" type="keywords" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Keywords of the funding opportunity. Should align with keywords defined for the funding opportunity content type</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="eligibilities" type="eligibilities" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>The eligibility requirements of the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="academicEligibilities"
                          type="academicEligibilities"
                          minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>The academic eligibility requirements of the funding opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="natureTypes" type="natureTypes" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>A collection of nature of activity tags. Should be a token from the scheme /dk/atira/pure/fundingopportunity/nature</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="labels" type="commons:labelsType" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Free text labels applied to the opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="descriptionOfApplicationProcess"
                          type="xs:string"
                          minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Description of the process to apply for the funding</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="urlToApplicationSite"
                          type="commons:string_1024"
                          minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Url to application site</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="emailAddressForApplication"
                          type="commons:string_1024"
                          minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Email address for application</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="recurring" type="xs:boolean" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Whether or not its recurring opportunity</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="visibility" type="commons:visibility" minOccurs="0">
                 <xs:annotation>
                    <xs:documentation>Visibility of the opportunity. Options are Public, Campus, Restricted or Confidential</xs:documentation>
                 </xs:annotation>
              </xs:element>
           </xs:all>
           <xs:attribute type="commons:string_400" name="id" use="required">
              <xs:annotation>
                 <xs:documentation>The external ID of the funding opportunity, this must be an unique value</xs:documentation>
              </xs:annotation>
           </xs:attribute>
           <xs:attribute type="commons:classification" name="type">
              <xs:annotation>
                 <xs:documentation>The type classification. Should be a token from the scheme /dk/atira/pure/fundingopportunity/fundingopportunitytypes</xs:documentation>
              </xs:annotation>
           </xs:attribute>
           <xs:attribute type="xs:boolean" name="managedInPure">
              <xs:annotation>
                 <xs:documentation>Determines whether the funding opportunity is managed in Pure, if set to to true the funding opportunity will be fully editable and deletable in Pure</xs:documentation>
              </xs:annotation>
           </xs:attribute>
        </xs:complexType>
 
 

XML Attribute/Element

Description

Type

Mandatory

@id

The external ID of the funding opportunity, this must be an unique value

commons:string_400

Yes

@type

The type classification. Should be a token from the scheme /dk/atira/pure/fundingopportunity/fundingopportunitytypes

commons:classification

Yes

@managedInPure

Determines whether the funding opportunity is managed in Pure, if set to to true the funding opportunity will be fully editable and deletable in Pure

xsd:boolean

Yes

title

The title of the funding opportunity

commons:string_1024

Yes

translatedTitles

Translated titles of the funding opportunity, use if there are different titles available for the submission languages supported in your Pure instance.

translatedTitles

No

description

The description of the funding opportunity

xsd:string

No

translatedDescriptions

Translated descriptions of the funding opportunity, use if there are different descriptions available for the submission languages supported in your Pure instance.

translatedDescriptions

No

ids

The ids of the funding opportunity, type attribute must be a token from the classification scheme /dk/atira/pure/fundingopportunity/fundingopportunitysources

commons:ids

No

url

The url to full announcement to the funding opportunity

commons:string_1024

No

fundingOrganisation

The external organisation that provides the funding opportunity. You can either specify an id to match an existing external organisation in you Pure or a name which will create an external organisation if one with that name does not exist.

commons:externalOrganisation

No

fundingOrganisations

A colleciton of external organisations that provides the funding opportunity. You can either specify an id to match an existing external organisation in you Pure or a name which will create an external organisation if one with that name does not exist.

commons:externalOrganisations

No

openingDate

The opening date of the funding opportunity

commons:date

No

deadline

The deadline of the funding opportunity

commons:date

No

letterOfIntentDate

The letter of intent date of the funding opportunity

commons:date

No

active

Whether or not the funding opportunity is active

xsd:boolean

No

awardCeiling

Award ceiling of the funding opportunity

xsd:double

No

awardCeilingCurrency

Currency of the award ceiling, must be a token from classification scheme /dk/atira/pure/core/isocurrencies, eg EUR

commons:classification

No

estimatedFunding

Estimated funding of the funding opportunity

xsd:double

No

estimatedFundingCurrency

Currency of the estimated funding, must be a token from classification scheme /dk/atira/pure/core/isocurrencies, eg EUR

commons:classification

No

limitedSubmission

Whether or not the funding opportunity has limited submission

xsd:boolean

No

numberOfAnnualApplicationsPerHEI

Number of annual applications per Higher Education Institute for the funding opportunity

xsd:int

No

numberOfAwards

Number of awards for the funding opportunity

xsd:int

No

openAccessRequirements

Whether or not the funding opportunity has open access requirements

xsd:boolean

No

keywords

Keywords of the funding opportunity. Should align with keywords defined for the funding opportunity content type

keywords

No

eligibilities

The eligibility requirements of the funding opportunity

eligibilities

No

academicEligibilities

The academic eligibility requirements of the funding opportunity

academicEligibilities

No

natureTypes

A collection of nature of activity tags. Should be a token from the scheme /dk/atira/pure/fundingopportunity/nature

natureTypes

No

labels

Free text labels applied to the opportunity

commons:labelsType

No

descriptionOfApplicationProcess

Description of the process to apply for the funding

xsd:string

No

urlToApplicationSite

Url to application site

commons:string_1024

No

emailAddressForApplication

Email address for application

commons:string_1024

No

recurring

Whether or not its recurring opportunity

xsd:boolean

No

visibility

Visibility of the opportunity. Options are Public, Campus, Restricted or Confidential

commons:visibility

No


Translations

translatedTitles

A list of title elements of type commons:localized_text_1024_lang

XML Example

<translatedTitles xmlns="v1.funding-opportunity.pure.atira.dk"
                          xmlns:cmns="v3.commons.pure.atira.dk">
           <title lang="de">Titel</title>
        </translatedTitles>
 
 

XSD Definition

<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="translatedTitles">
           <xs:sequence>
              <xs:element name="title"
                          type="commons:localized_text_1024_lang"
                          maxOccurs="unbounded">
                 <xs:annotation>
                    <xs:documentation>Translated title of the funding opportunity, can be specified in multi languages if your Pure is multilingual</xs:documentation>
                 </xs:annotation>
              </xs:element>
           </xs:sequence>
        </xs:complexType>
 
 

XML Attribute/Element

Description

Type

Mandatory

title

Translated title of the funding opportunity, can be specified in multi languages if your Pure is multilingual

commons:localized_text_1024_lang

Yes

translatedDescriptions

A list of description elements of type commons:localized_text_lang

XML Example

<translatedDescriptions xmlns="v1.funding-opportunity.pure.atira.dk"
                                xmlns:cmns="v3.commons.pure.atira.dk">
           <description lang="de">Beschreibung</description>
        </translatedDescriptions>
 
 

XSD Definition

<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="translatedDescriptions">
           <xs:sequence>
              <xs:element name="description"
                          type="commons:localized_text_lang"
                          maxOccurs="unbounded">
                 <xs:annotation>
                    <xs:documentation>Translated description of the funding opportunity, can be specified in multi languages if your Pure is multilingual</xs:documentation>
                 </xs:annotation>
              </xs:element>
           </xs:sequence>
        </xs:complexType>
 
 

XML Attribute/Element

Description

Type

Mandatory

description

Translated description of the funding opportunity, can be specified in multi languages if your Pure is multilingual

commons:localized_text_lang

Yes


Eligibilities


eligibilities

A list of eligibility elements of type eligibility

XML Example

<eligibilities xmlns="v1.funding-opportunity.pure.atira.dk"
                       xmlns:cmns="v3.commons.pure.atira.dk">
           <eligibility><!-- Type should be defined in "Funding opportunity eligibility types" classification scheme -->
              <eligibilityType>women</eligibilityType>
              <!-- RECOMMENDATION or REQUIREMENT -->
              <eligibilityFulfilmentType>RECOMMENDATION</eligibilityFulfilmentType>
           </eligibility>
           <eligibility><!-- Type should be defined in "Funding opportunity eligibility types" classification scheme -->
              <eligibilityType>nation</eligibilityType>
              <!-- RECOMMENDATION or REQUIREMENT -->
              <eligibilityFulfilmentType>REQUIREMENT</eligibilityFulfilmentType>
           </eligibility>
        </eligibilities>
 
 

XSD Definition

<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="eligibilities">
           <xs:sequence>
              <xs:element name="eligibility" type="eligibility" maxOccurs="unbounded">
                 <xs:annotation>
                    <xs:documentation>Eligibility requirements to apply for the funding (such as age, gender or location requirements). The type must be from the classification scheme /dk/atira/pure/fundingopportunity/eligibility</xs:documentation>
                 </xs:annotation>
              </xs:element>
           </xs:sequence>
        </xs:complexType>
 
 

academicEligibilities

A list of eligibility elements of type eligibility

XML Example

<academicEligibilities xmlns="v1.funding-opportunity.pure.atira.dk"
                               xmlns:cmns="v3.commons.pure.atira.dk">
           <eligibility><!-- Type should be defined in "Funding opportunity academic degree eligibility types" classification scheme -->
              <eligibilityType>minimum_doctor_degree</eligibilityType>
              <!-- RECOMMENDATION or REQUIREMENT -->
              <eligibilityFulfilmentType>REQUIREMENT</eligibilityFulfilmentType>
           </eligibility>
           <eligibility><!-- Type should be defined in "Funding opportunity academic degree eligibility types" classification scheme -->
              <eligibilityType>minimum_master_degree</eligibilityType>
              <!-- RECOMMENDATION or REQUIREMENT -->
              <eligibilityFulfilmentType>RECOMMENDATION</eligibilityFulfilmentType>
           </eligibility>
        </academicEligibilities>
 
 

XSD Definition

<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="academicEligibilities">
           <xs:sequence>
              <xs:element name="eligibility" type="eligibility" maxOccurs="unbounded">
                 <xs:annotation>
                    <xs:documentation>Academic eligibility requirements to apply for the funding (such as degree requirements). The type must be from the classification scheme /dk/atira/pure/fundingopportunity/academic_degree_eligibility</xs:documentation>
                 </xs:annotation>
              </xs:element>
           </xs:sequence>
        </xs:complexType>
 
 

eligibility

XML Example

<eligibility xmlns="v1.funding-opportunity.pure.atira.dk"
                     xmlns:cmns="v3.commons.pure.atira.dk"><!-- Type should be defined in "Funding opportunity eligibility types" classification scheme -->
           <eligibilityType>women</eligibilityType>
           <!-- RECOMMENDATION or REQUIREMENT -->
           <eligibilityFulfilmentType>RECOMMENDATION</eligibilityFulfilmentType>
        </eligibility>
 
 

XSD Definition

<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="eligibility">
           <xs:all>
              <xs:element name="eligibilityType" type="commons:classification">
                 <xs:annotation>
                    <xs:documentation>The type classification of the eligibility. Should be a token from the scheme /dk/atira/pure/fundingopportunity/eligibility for Eligibility or /dk/atira/pure/fundingopportunity/academic_degree_eligibility for Academic Eligibility</xs:documentation>
                 </xs:annotation>
              </xs:element>
              <xs:element name="eligibilityFulfilmentType" type="eligibilityFulfilmentType">
                 <xs:annotation>
                    <xs:documentation>The fulfilment type of the eligibility. Must be either RECOMMENDATION or REQUIREMENT</xs:documentation>
                 </xs:annotation>
              </xs:element>
           </xs:all>
        </xs:complexType>
 
 

XML Attribute/Element

Description

Type

Mandatory

eligibilityType

The type classification of the eligibility. Should be a token from the scheme /dk/atira/pure/fundingopportunity/eligibility for Eligibility or /dk/atira/pure/fundingopportunity/academic_degree_eligibility for Academic Eligibility

commons:classification

Yes

eligibilityFulfilmentType

The fulfilment type of the eligibility. Must be either RECOMMENDATION or REQUIREMENT

eligibilityFulfilmentType

Yes

eligibilityFulfilmentType

Whether the eligibility requirement is just a recommendation or is required

XML Example

<eligibilityFulfilmentType xmlns="v1.funding-opportunity.pure.atira.dk"
                                   xmlns:cmns="v3.commons.pure.atira.dk">RECOMMENDATION</eligibilityFulfilmentType>
 
 

XSD Definition

<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema"
                       name="eligibilityFulfilmentType">
           <xs:annotation>
              <xs:documentation>Whether the eligibility requirement is just a recommendation or is required</xs:documentation>
           </xs:annotation>
           <xs:restriction base="xs:string">
              <xs:enumeration value="RECOMMENDATION"/>
              <xs:enumeration value="REQUIREMENT"/>
           </xs:restriction>
        </xs:simpleType>
 
 

Restricted value: xs:string

Type

Value

Comments

xs:enumeration

RECOMMENDATION

 

xs:enumeration

REQUIREMENT

 


Tags and Keywords

keywords

A list of keyword elements of type commons:keyword

XML Example

<keywords xmlns="v1.funding-opportunity.pure.atira.dk"
                  xmlns:cmns="v3.commons.pure.atira.dk">
           <keyword>Free text keyword</keyword>
           <keyword lang="en" logicalName="cfdaKeywordContainers" key="10.217"/>
        </keywords>
 
 

XSD Definition

<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="keywords">
           <xs:sequence>
              <xs:element name="keyword" type="commons:keyword" maxOccurs="unbounded">
                 <xs:annotation>
                    <xs:documentation>A free text and/or classified keyword. Should align with the keyword types defined under Administration -&gt; Keywords for the Funding Opportunity content type</xs:documentation>
                 </xs:annotation>
              </xs:element>
           </xs:sequence>
        </xs:complexType>
 
 

XML Attribute/Element

Description

Type

Mandatory

keyword

A free text and/or classified keyword. Should align with the keyword types defined under Administration -> Keywords for the Funding Opportunity content type

commons:keyword

Yes

natureTypes

A list of natureType elements of type commons:classification

XML Example

<natureTypes xmlns="v1.funding-opportunity.pure.atira.dk"
                     xmlns:cmns="v3.commons.pure.atira.dk">
           <natureType>research</natureType>
           <natureType>individual_grant</natureType>
        </natureTypes>
 
 

XSD Definition

<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="natureTypes">
           <xs:sequence>
              <xs:element name="natureType"
                          type="commons:classification"
                          maxOccurs="unbounded">
                 <xs:annotation>
                    <xs:documentation>A nature of activity tag. Should be a token from the scheme /dk/atira/pure/fundingopportunity/nature</xs:documentation>
                 </xs:annotation>
              </xs:element>
           </xs:sequence>
        </xs:complexType>
 
 

XML Attribute/Element

Description

Type

Mandatory

natureType

A nature of activity tag. Should be a token from the scheme /dk/atira/pure/fundingopportunity/nature

commons:classification

Yes

Published at February 22, 2024

Download
Related Articles
  • Ethical Review XML
  • Application XML
  • Award XML
  • Project XML
Keywords
  • xml
  • funding

Was this article helpful?

Yes
No
Give feedback about this article

    About Pure

  • Announcements

    Additional Support

  • Events
  • Client Community
  • Training

    Need Help?

  • Contact Us
  • Submit a Support Case
  • My Cases
  • Linkedin
  • Twitter
  • Facebook
  • Youtube
Elsevier logo Relx logo

Copyright © 2025 Elsevier, except certain content provided by third parties.

  • Terms & Conditions Terms & Conditions
  • Privacy policyPrivacy policy
  • AccesibilityAccesibility
  • Cookie SettingsCookie Settings
  • Log in to Pure Help CenterLog in to Helpjuice Center

Knowledge Base Software powered by Helpjuice

Expand