University of Manchester · Schema
Project
Projects exists in two variations depending on the functionality enabled in the Pure installation.
EducationHigher EducationUniversityResearchOpen DataUnited Kingdom
Properties
| Name | Type | Description |
|---|---|---|
| pureId | integer | Pure database ID of the object, prefer using the UUID if it is present on the entity |
| uuid | string | UUID, this is the primary identity of the entity |
| createdBy | string | Username of creator |
| createdDate | string | Date and time of creation |
| modifiedBy | string | Username of the user that performed a modification |
| modifiedDate | string | Date and time of last modification |
| portalUrl | string | URL of the content on the Pure Portal |
| prettyUrlIdentifiers | array | All pretty URLs |
| previousUuids | array | UUIDs of other content items which have been merged into this content item (or similar) |
| version | string | Used to guard against conflicting updates. For new content this is null, and for existing content the current value. The property should never be modified by a client, except in the rare case where th |
| acronym | string | The acronym of the project. |
| participants | array | Related participants and their affiliations. |
| externalOrganizations | array | A collection of external organization affiliations. |
| coManagingOrganizations | array | A collection of co-managing organizational affiliations. |
| collaborators | array | A collection of collaborators. |
| descriptions | array | A collection of descriptions for the project. Query the /projects/allowed-description-types endpoint for allowed types. |
| period | object | |
| effectivePeriod | object | |
| identifiers | array | Identifiers related to the project. |
| natureTypes | array | Nature of activity types for the project. |
| organizations | array | A collection of organizational unit affiliations. |
| managingOrganization | object | |
| shortTitle | object | |
| title | object | |
| totalAcademicOwnership | number | Total academic ownership of the project. |
| type | object | |
| workflow | object | |
| visibility | object | |
| links | array | Links associated with the project. |
| keywordGroups | array | Groups of keywords associated with the project. |
| documents | array | A collection of documents related to the project. |
| curtailed | object | |
| projects | array | A collection of related projects. |
| applicationClusters | array | A collection of related application clusters. |
| awardClusters | array | A collection of related grant clusters. |
| dataSets | array | A collection of related datasets. |
| prizes | array | A collection of related prizes. |
| activities | array | A collection of related activities. |
| pressMedias | array | A collection of related press/media. |
| equipment | array | A collection of related equipment. |
| impacts | array | A collection of related impacts. |
| researchOutputs | array | A collection of related research output. |
| studentTheses | array | A collection of related student theses. |
| customDefinedFields | object | |
| images | array | Image files with a maximum file size of 1MB |
| systemName | string | The content system name |
| typeDiscriminator | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/university-of-manchester/main/json-schema/university-of-manchester-project-schema.json",
"title": "Project",
"description": "Projects exists in two variations depending on the functionality enabled in the Pure installation.",
"type": "object",
"properties": {
"pureId": {
"type": "integer",
"format": "int64",
"description": "Pure database ID of the object, prefer using the UUID if it is present on the entity"
},
"uuid": {
"type": "string",
"format": "uuid",
"description": "UUID, this is the primary identity of the entity"
},
"createdBy": {
"type": "string",
"description": "Username of creator"
},
"createdDate": {
"type": "string",
"format": "date-time",
"description": "Date and time of creation"
},
"modifiedBy": {
"type": "string",
"description": "Username of the user that performed a modification"
},
"modifiedDate": {
"type": "string",
"format": "date-time",
"description": "Date and time of last modification"
},
"portalUrl": {
"type": "string",
"description": "URL of the content on the Pure Portal"
},
"prettyUrlIdentifiers": {
"type": "array",
"items": {
"type": "string"
},
"description": "All pretty URLs"
},
"previousUuids": {
"type": "array",
"items": {
"type": "string"
},
"description": "UUIDs of other content items which have been merged into this content item (or similar)"
},
"version": {
"type": "string",
"description": "Used to guard against conflicting updates. For new content this is null, and for existing content the current value. The property should never be modified by a client, except in the rare case where the client wants to perform an update irrespective of if other clients have made updates in the meantime, also known as a \"dirty write\". A dirty write is performed by not including the property value or setting the property to null"
},
"acronym": {
"type": "string",
"description": "The acronym of the project."
},
"participants": {
"type": "array",
"items": {
"type": "object"
},
"description": "Related participants and their affiliations."
},
"externalOrganizations": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of external organization affiliations."
},
"coManagingOrganizations": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of co-managing organizational affiliations."
},
"collaborators": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of collaborators."
},
"descriptions": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of descriptions for the project. Query the /projects/allowed-description-types endpoint for allowed types."
},
"period": {
"type": "object"
},
"effectivePeriod": {
"type": "object"
},
"identifiers": {
"type": "array",
"items": {
"type": "object"
},
"description": "Identifiers related to the project."
},
"natureTypes": {
"type": "array",
"items": {
"type": "object"
},
"description": "Nature of activity types for the project."
},
"organizations": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of organizational unit affiliations."
},
"managingOrganization": {
"type": "object"
},
"shortTitle": {
"type": "object"
},
"title": {
"type": "object"
},
"totalAcademicOwnership": {
"type": "number",
"format": "double",
"description": "Total academic ownership of the project."
},
"type": {
"type": "object"
},
"workflow": {
"type": "object"
},
"visibility": {
"type": "object"
},
"links": {
"type": "array",
"items": {
"type": "object"
},
"description": "Links associated with the project."
},
"keywordGroups": {
"type": "array",
"items": {
"type": "object"
},
"description": "Groups of keywords associated with the project."
},
"documents": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of documents related to the project."
},
"curtailed": {
"type": "object"
},
"projects": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of related projects."
},
"applicationClusters": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of related application clusters."
},
"awardClusters": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of related grant clusters."
},
"dataSets": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of related datasets."
},
"prizes": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of related prizes."
},
"activities": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of related activities."
},
"pressMedias": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of related press/media."
},
"equipment": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of related equipment."
},
"impacts": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of related impacts."
},
"researchOutputs": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of related research output."
},
"studentTheses": {
"type": "array",
"items": {
"type": "object"
},
"description": "A collection of related student theses."
},
"customDefinedFields": {
"type": "object"
},
"images": {
"type": "array",
"items": {
"type": "object"
},
"description": "Image files with a maximum file size of 1MB"
},
"systemName": {
"type": "string",
"description": "The content system name"
},
"typeDiscriminator": {
"type": "string"
}
},
"required": [
"uuid"
]
}