Lancaster University · JSON Structure

Lancaster Record Structure

JSON Structure for an OAI-PMH record harvested from the Lancaster EPrints repository.

Type: object Properties: 2 Required: 1
EducationHigher EducationUniversityUnited KingdomResearchLibraryOpen Data

LancasterEPrintsRecord is a JSON Structure definition published by Lancaster University, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

header metadata

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lancaster/main/json-structure/lancaster-record-structure.json",
  "name": "LancasterEPrintsRecord",
  "description": "JSON Structure for an OAI-PMH record harvested from the Lancaster EPrints repository.",
  "type": "object",
  "properties": {
    "header": {
      "type": "object",
      "properties": {
        "identifier": { "type": "string" },
        "datestamp": { "type": "string", "format": "date-time" },
        "status": { "type": "string" },
        "setSpec": { "type": "array", "items": { "type": "string" } }
      },
      "required": ["identifier", "datestamp"]
    },
    "metadata": {
      "type": "object",
      "name": "DublinCore",
      "properties": {
        "title": { "type": "string" },
        "creator": { "type": "array", "items": { "type": "string" } },
        "date": { "type": "string" },
        "type": { "type": "array", "items": { "type": "string" } },
        "identifier": { "type": "array", "items": { "type": "string" } },
        "subject": { "type": "array", "items": { "type": "string" } },
        "description": { "type": "string" },
        "publisher": { "type": "string" },
        "relation": { "type": "array", "items": { "type": "string" } }
      }
    }
  },
  "required": ["header"]
}