{ "$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"] } } }