Loughborough Research Repository Author

An author of a research output in the Loughborough Research Repository (figshare API).

EducationHigher EducationUniversityUnited KingdomResearch DataOpen AccessRepositoryIdentity

Properties

Name Type Description
id integer Author id.
full_name string
first_name string
last_name string
is_active boolean True if author has published items.
url_name string
orcid_id string Author ORCID iD.
View JSON Schema on GitHub

JSON Schema

loughborough-author-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/loughborough/main/json-schema/loughborough-author-schema.json",
  "title": "Loughborough Research Repository Author",
  "description": "An author of a research output in the Loughborough Research Repository (figshare API).",
  "type": "object",
  "required": [
    "full_name"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "description": "Author id."
    },
    "full_name": {
      "type": "string"
    },
    "first_name": {
      "type": "string"
    },
    "last_name": {
      "type": "string"
    },
    "is_active": {
      "type": "boolean",
      "description": "True if author has published items."
    },
    "url_name": {
      "type": "string"
    },
    "orcid_id": {
      "type": "string",
      "description": "Author ORCID iD."
    }
  }
}