DSpace Community

A community in the edoc-Server DSpace repository at Humboldt-Universität zu Berlin. Communities group collections and sub-communities.

EducationHigher EducationUniversityResearchOpen AccessLibraryGermany

Properties

Name Type Description
id string
uuid string
name string
handle string
metadata object
archivedItemsCount integer
type string
_links object
View JSON Schema on GitHub

JSON Schema

humboldt-universitat-zu-berlin-community-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://edoc.hu-berlin.de/schema/community.json",
  "title": "DSpace Community",
  "description": "A community in the edoc-Server DSpace repository at Humboldt-Universität zu Berlin. Communities group collections and sub-communities.",
  "type": "object",
  "required": ["uuid", "type"],
  "properties": {
    "id": { "type": "string", "format": "uuid" },
    "uuid": { "type": "string", "format": "uuid" },
    "name": { "type": "string" },
    "handle": { "type": "string", "examples": ["18452/21664"] },
    "metadata": { "$ref": "#/$defs/metadataMap" },
    "archivedItemsCount": { "type": "integer" },
    "type": { "type": "string", "const": "community" },
    "_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" }
    }
  }
}