Humboldt Universitat Zu Berlin Item Structure

JSON Structure for a DSpace item in the edoc-Server repository at Humboldt-Universität zu Berlin.

Type: object Properties: 11 Required: 2
EducationHigher EducationUniversityResearchOpen AccessLibraryGermany

DSpaceItem is a JSON Structure definition published by Humboldt-Universität zu Berlin, describing 11 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id uuid name handle metadata inArchive discoverable withdrawn lastModified entityType type

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://edoc.hu-berlin.de/structure/item.json",
  "name": "DSpaceItem",
  "description": "JSON Structure for a DSpace item in the edoc-Server repository at Humboldt-Universität zu Berlin.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "uuid": { "type": "string" },
    "name": { "type": "string" },
    "handle": { "type": "string" },
    "metadata": {
      "type": "map",
      "values": {
        "type": "array",
        "items": { "$ref": "#/definitions/MetadataValue" }
      }
    },
    "inArchive": { "type": "boolean" },
    "discoverable": { "type": "boolean" },
    "withdrawn": { "type": "boolean" },
    "lastModified": { "type": "string" },
    "entityType": { "type": ["string", "null"] },
    "type": { "type": "string" }
  },
  "required": ["uuid", "type"],
  "definitions": {
    "MetadataValue": {
      "type": "object",
      "properties": {
        "value": { "type": "string" },
        "language": { "type": ["string", "null"] },
        "authority": { "type": ["string", "null"] },
        "confidence": { "type": "int32" },
        "place": { "type": "int32" }
      },
      "required": ["value"]
    }
  }
}