University of Bristol · JSON Structure

University Of Bristol Dataset Structure

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

Type: object Properties: 11 Required: 2
EducationHigher EducationUniversityResearchOpen DataUnited Kingdom

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

Properties

pureId uuid createdDate modifiedDate portalUrl version title type license totalNumberOfAuthors openAireCompliant

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-dataset-structure.json",
  "name": "DataSet",
  "type": "object",
  "description": "JSON Structure for a Pure DataSet (research dataset) 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" },
    "type": { "$ref": "#/definitions/ClassificationRef" },
    "license": { "$ref": "#/definitions/ClassificationRef" },
    "totalNumberOfAuthors": { "type": "int32" },
    "openAireCompliant": { "type": "boolean" }
  },
  "required": ["title", "type"],
  "definitions": {
    "ClassificationRef": {
      "type": "object",
      "properties": {
        "uri": { "type": "string" },
        "term": { "type": "object" }
      },
      "required": ["uri"]
    }
  }
}