Kyoto University · Schema

KURENAI Collection

A DSpace collection in the Kyoto University Research Information Repository (KURENAI), as returned by /server/api/core/collections.

UniversityHigher EducationEducationJapanNational UniversityResearch RepositoryResearch DataIdentity FederationLearning ManagementOpen AccessResearch ComputingScholarly

Properties

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

JSON Schema

kyoto-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://repository.kulib.kyoto-u.ac.jp/schemas/collection.json",
  "title": "KURENAI Collection",
  "description": "A DSpace collection in the Kyoto University Research Information Repository (KURENAI), as returned by /server/api/core/collections.",
  "type": "object",
  "required": ["uuid", "name", "handle", "type"],
  "properties": {
    "id": { "type": "string", "format": "uuid" },
    "uuid": { "type": "string", "format": "uuid" },
    "name": { "type": "string" },
    "handle": { "type": "string", "examples": ["2433/126120"] },
    "archivedItemsCount": { "type": "integer", "minimum": 0 },
    "type": { "type": "string", "const": "collection" }
  }
}