University of Adelaide · Schema
Figshare Collection
EducationHigher EducationUniversityResearchInstitutional RepositoryOpen DataAustralia
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Collection id |
| title | string | Collection title |
| doi | string | Collection DOI |
| handle | string | Collection Handle |
| url | string | Api endpoint |
| timeline | object |
JSON Schema
{
"required": [
"doi",
"handle",
"id",
"timeline",
"title",
"url"
],
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Collection id",
"example": 123
},
"title": {
"type": "string",
"description": "Collection title",
"example": "Sample collection"
},
"doi": {
"type": "string",
"description": "Collection DOI",
"example": "10.6084/m9.figshare.123"
},
"handle": {
"type": "string",
"description": "Collection Handle",
"example": "111184/figshare.1234"
},
"url": {
"type": "string",
"description": "Api endpoint",
"example": "https://api.figshare.com/v2/collections/123"
},
"timeline": {
"allOf": [
{
"$ref": "#/components/schemas/TimelineUpdate"
}
]
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/university-of-adelaide/main/json-schema/university-of-adelaide-collection-schema.json",
"title": "Figshare Collection"
}