Macquarie University · Schema
Figshare Article
A public research output (article/dataset/thesis) in the Macquarie University Research Data Repository as returned by the Figshare API v2. Derived faithfully from the upstream Figshare OpenAPI 3.0.3 'Article' schema.
EducationHigher EducationUniversityResearch DataLibraryAustralia
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier for article |
| title | string | Title of article |
| doi | string | DOI |
| handle | string | Handle |
| url | string | Api endpoint for article |
| url_public_html | string | Public site endpoint for article |
| url_public_api | string | Public Api endpoint for article |
| url_private_html | string | Private site endpoint for article |
| url_private_api | string | Private Api endpoint for article |
| timeline | object | Timeline of publication dates |
| thumb | string | Thumbnail image |
| defined_type | integer | Type of article identifier |
| defined_type_name | string | Name of the article type identifier |
| resource_doi | string | Deprecated by related materials. Not applicable to regular users. In a publisher case, this is the publisher article DOI. |
| resource_title | string | Deprecated by related materials. Not applicable to regular users. In a publisher case, this is the publisher article title. |
| created_date | string | Date when article was created |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/macquarie/main/json-schema/macquarie-article-schema.json",
"title": "Figshare Article",
"description": "A public research output (article/dataset/thesis) in the Macquarie University Research Data Repository as returned by the Figshare API v2. Derived faithfully from the upstream Figshare OpenAPI 3.0.3 'Article' schema.",
"type": "object",
"required": [
"created_date",
"defined_type",
"defined_type_name",
"doi",
"handle",
"id",
"resource_doi",
"resource_title",
"thumb",
"timeline",
"title",
"url",
"url_private_api",
"url_private_html",
"url_public_api",
"url_public_html"
],
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier for article"
},
"title": {
"type": "string",
"description": "Title of article"
},
"doi": {
"type": "string",
"description": "DOI"
},
"handle": {
"type": "string",
"description": "Handle"
},
"url": {
"type": "string",
"description": "Api endpoint for article",
"format": "url"
},
"url_public_html": {
"type": "string",
"description": "Public site endpoint for article",
"format": "url"
},
"url_public_api": {
"type": "string",
"description": "Public Api endpoint for article",
"format": "url"
},
"url_private_html": {
"type": "string",
"description": "Private site endpoint for article",
"format": "url"
},
"url_private_api": {
"type": "string",
"description": "Private Api endpoint for article",
"format": "url"
},
"timeline": {
"type": "object",
"description": "Timeline of publication dates",
"properties": {
"firstOnline": {
"type": "string",
"description": "Online posted date"
},
"publisherPublication": {
"type": "string",
"description": "Publish date"
},
"publisherAcceptance": {
"type": "string",
"description": "Date when the item was accepted for publication"
}
}
},
"thumb": {
"type": "string",
"description": "Thumbnail image",
"format": "url"
},
"defined_type": {
"type": "integer",
"description": "Type of article identifier"
},
"defined_type_name": {
"type": "string",
"description": "Name of the article type identifier"
},
"resource_doi": {
"type": "string",
"description": "Deprecated by related materials. Not applicable to regular users. In a publisher case, this is the publisher article DOI.",
"default": ""
},
"resource_title": {
"type": "string",
"description": "Deprecated by related materials. Not applicable to regular users. In a publisher case, this is the publisher article title.",
"default": ""
},
"created_date": {
"type": "string",
"description": "Date when article was created"
}
}
}