University of Hong Kong · JSON Structure

Hku Author Structure

JSON Structure for the Figshare API Author object that powers HKU DataHub.

Type: object Properties: 7 Required: 7
EducationHigher EducationUniversityResearch DataOpen AccessHong Kong

FigshareAuthor is a JSON Structure definition published by University of Hong Kong, describing 7 properties, of which 7 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id full_name first_name last_name is_active url_name orcid_id

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hku/main/json-structure/hku-author-structure.json",
  "name": "FigshareAuthor",
  "description": "JSON Structure for the Figshare API Author object that powers HKU DataHub.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int64",
      "description": "Author id"
    },
    "full_name": {
      "type": "string",
      "description": "Author full name"
    },
    "first_name": {
      "type": "string",
      "description": "Author first name"
    },
    "last_name": {
      "type": "string",
      "description": "Author last name"
    },
    "is_active": {
      "type": "boolean",
      "description": "True if author has published items"
    },
    "url_name": {
      "type": "string",
      "description": "Author url name"
    },
    "orcid_id": {
      "type": "string",
      "description": "Author Orcid"
    }
  },
  "required": [
    "first_name",
    "full_name",
    "id",
    "is_active",
    "last_name",
    "orcid_id",
    "url_name"
  ]
}