Figshare · Schema
ProjectComplete
Figshare ProjectComplete schema
Research DataData RepositoryOpen ScienceDOIDatasetsAcademicFile StorageOpen Access
Properties
| Name | Type | Description |
|---|---|---|
| funding | string | Project funding |
| funding_list | array | Full Project funding information |
| description | string | Project description |
| collaborators | array | List of project collaborators |
| custom_fields | array | Project custom fields |
| modified_date | string | Date when project was last modified |
| created_date | string | Date when project was created |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ProjectComplete",
"description": "Figshare ProjectComplete schema",
"required": [
"collaborators",
"created_date",
"custom_fields",
"description",
"funding",
"funding_list",
"modified_date"
],
"properties": {
"funding": {
"type": "string",
"description": "Project funding",
"example": ""
},
"funding_list": {
"type": "array",
"description": "Full Project funding information",
"items": {
"$ref": "#/components/schemas/FundingInformation"
}
},
"description": {
"type": "string",
"description": "Project description",
"example": "description"
},
"collaborators": {
"type": "array",
"description": "List of project collaborators",
"items": {
"$ref": "#/components/schemas/Collaborator"
}
},
"custom_fields": {
"type": "array",
"description": "Project custom fields",
"items": {
"$ref": "#/components/schemas/CustomArticleField"
}
},
"modified_date": {
"type": "string",
"description": "Date when project was last modified",
"example": "2017-05-16T14:52:54Z"
},
"created_date": {
"type": "string",
"description": "Date when project was created",
"example": "2017-05-16T14:52:54Z"
}
},
"allOf": [
{
"$ref": "#/components/schemas/Project"
}
],
"x-tag": "projects"
}