Figshare Collection

A public collection of research items as returned by the Figshare public REST API used by the King's College London research repository.

EducationHigher EducationUniversityResearchOpen DataOAI-PMHLibraryUnited Kingdom

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

kings-college-london-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/kings-college-london/main/json-schema/kings-college-london-collection-schema.json",
  "title": "Figshare Collection",
  "description": "A public collection of research items as returned by the Figshare public REST API used by the King's College London research repository.",
  "type": "object",
  "required": ["id", "title", "doi", "handle", "url", "timeline"],
  "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" }
      }
    }
  }
}