DSpace Item

An item (repository record such as a thesis, dissertation, article, or dataset) in the edoc-Server DSpace repository at Humboldt-Universität zu Berlin.

EducationHigher EducationUniversityResearchOpen AccessLibraryGermany

Properties

Name Type Description
id string
uuid string
name string
handle string
metadata object
inArchive boolean
discoverable boolean
withdrawn boolean
lastModified string
entityType stringnull
type string
_links object
View JSON Schema on GitHub

JSON Schema

humboldt-universitat-zu-berlin-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://edoc.hu-berlin.de/schema/item.json",
  "title": "DSpace Item",
  "description": "An item (repository record such as a thesis, dissertation, article, or dataset) in the edoc-Server DSpace repository at Humboldt-Universität zu Berlin.",
  "type": "object",
  "required": ["uuid", "type"],
  "properties": {
    "id": { "type": "string", "format": "uuid" },
    "uuid": { "type": "string", "format": "uuid" },
    "name": { "type": "string" },
    "handle": { "type": "string" },
    "metadata": { "$ref": "#/$defs/metadataMap" },
    "inArchive": { "type": "boolean" },
    "discoverable": { "type": "boolean" },
    "withdrawn": { "type": "boolean" },
    "lastModified": { "type": "string", "format": "date-time" },
    "entityType": { "type": ["string", "null"] },
    "type": { "type": "string", "const": "item" },
    "_links": { "$ref": "#/$defs/links" }
  },
  "$defs": {
    "metadataValue": {
      "type": "object",
      "required": ["value"],
      "properties": {
        "value": { "type": "string" },
        "language": { "type": ["string", "null"] },
        "authority": { "type": ["string", "null"] },
        "confidence": { "type": "integer" },
        "place": { "type": "integer" }
      }
    },
    "metadataMap": {
      "type": "object",
      "additionalProperties": {
        "type": "array",
        "items": { "$ref": "#/$defs/metadataValue" }
      }
    },
    "link": {
      "type": "object",
      "properties": { "href": { "type": "string", "format": "uri" } }
    },
    "links": {
      "type": "object",
      "additionalProperties": { "$ref": "#/$defs/link" }
    }
  }
}