Figshare Collection

A collection of research items in Figshare (Manara - Qatar Research Repository). Derived from the Figshare API v2 Collection schema.

EducationHigher EducationUniversityResearchOpen AccessRepositoryQatarMiddle East

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 Timeline of significant dates for the collection
View JSON Schema on GitHub

JSON Schema

hbku-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hbku/main/json-schema/hbku-collection-schema.json",
  "title": "Figshare Collection",
  "description": "A collection of research items in Figshare (Manara - Qatar Research Repository). Derived from the Figshare API v2 Collection schema.",
  "type": "object",
  "required": [
    "id",
    "title",
    "doi",
    "handle",
    "url",
    "timeline"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "description": "Collection id",
      "examples": [123]
    },
    "title": {
      "type": "string",
      "description": "Collection title",
      "examples": ["Sample collection"]
    },
    "doi": {
      "type": "string",
      "description": "Collection DOI",
      "examples": ["10.6084/m9.figshare.123"]
    },
    "handle": {
      "type": "string",
      "description": "Collection Handle"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "API endpoint"
    },
    "timeline": {
      "type": "object",
      "description": "Timeline of significant dates for the collection",
      "properties": {
        "posted": { "type": "string" },
        "firstOnline": { "type": "string" },
        "revision": { "type": "string" },
        "submission": { "type": "string" }
      }
    }
  },
  "additionalProperties": true
}