Figshare Collection

A collection grouping multiple research articles in the Figshare API used by the Stockholm University research data repository. Derived from components.schemas.Collection in the live Figshare OpenAPI 3.0.3 specification.

EducationHigher EducationUniversityResearchOpen AccessRepositorySwedenEurope

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 Important dates in the lifecycle of the collection
View JSON Schema on GitHub

JSON Schema

stockholm-collection-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/stockholm/main/json-schema/stockholm-collection-schema.json",
  "title": "Figshare Collection",
  "description": "A collection grouping multiple research articles in the Figshare API used by the Stockholm University research data repository. Derived from components.schemas.Collection in the live Figshare OpenAPI 3.0.3 specification.",
  "type": "object",
  "properties": {
    "id": { "type": "integer", "description": "Collection id" },
    "title": { "type": "string", "description": "Collection title" },
    "doi": { "type": "string", "description": "Collection DOI" },
    "handle": { "type": "string", "description": "Collection Handle" },
    "url": { "type": "string", "format": "uri", "description": "API endpoint" },
    "timeline": {
      "type": "object",
      "description": "Important dates in the lifecycle of the collection",
      "properties": {
        "posted": { "type": "string" },
        "firstOnline": { "type": "string" },
        "revision": { "type": "string" },
        "submission": { "type": "string" }
      }
    }
  },
  "required": ["id", "title"]
}