University of Bristol · JSON Structure

University Of Bristol Research Output Structure

JSON Structure for a Pure ResearchOutput (research publication) at the University of Bristol Research Portal.

Type: object Properties: 14 Required: 4
EducationHigher EducationUniversityResearchOpen DataUnited Kingdom

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

Properties

pureId uuid createdDate modifiedDate portalUrl version title type category language peerReview submissionYear totalNumberOfContributors typeDiscriminator

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/university-of-bristol/main/json-structure/university-of-bristol-research-output-structure.json",
  "name": "ResearchOutput",
  "type": "object",
  "description": "JSON Structure for a Pure ResearchOutput (research publication) at the University of Bristol Research Portal.",
  "properties": {
    "pureId": { "type": "int64" },
    "uuid": { "type": "string" },
    "createdDate": { "type": "string", "format": "date-time" },
    "modifiedDate": { "type": "string", "format": "date-time" },
    "portalUrl": { "type": "string" },
    "version": { "type": "string" },
    "title": {
      "type": "object",
      "properties": { "value": { "type": "string" } }
    },
    "type": { "$ref": "#/definitions/ClassificationRef" },
    "category": { "$ref": "#/definitions/ClassificationRef" },
    "language": { "$ref": "#/definitions/ClassificationRef" },
    "peerReview": { "type": "boolean" },
    "submissionYear": { "type": "int32" },
    "totalNumberOfContributors": { "type": "int32" },
    "typeDiscriminator": { "type": "string" }
  },
  "required": ["title", "type", "category", "typeDiscriminator"],
  "definitions": {
    "ClassificationRef": {
      "type": "object",
      "properties": {
        "uri": { "type": "string" },
        "term": { "type": "object" }
      },
      "required": ["uri"]
    }
  }
}