University of York · Schema

University of York Digital Collections Item

One indexed record from the University of York Digital Collections search API (discover.york.ac.uk/api/search-simple). Derived field-by-field from live responses captured 2026-08-30; every property below was observed in a real payload. Institution-operated surface.

UniversityHigher EducationEducationUnited KingdomRussell GroupDigital CollectionsCultural HeritageArchivesIIIFResearch DataOpen AccessOAI-PMHIdentity FederationLibraryResearch Computing

Properties

Name Type Description
id string ARK-based item identifier under the University of York NAAN 36941. Doubles as the IIIF Image API identifier path.
title string
label string
summary string Collection-level description text repeated onto each item.
creator string
date string Free-text date as catalogued, e.g. '1922-1963'.
date_range object Normalised date range, present only when the catalogue date could be parsed.
subjects object Subject terms. Observed both as a bare string (often empty) and as an array of strings.
rights string
type string Record type.
work_type string
parent_collection_id string
parent_collection_label string
borthwick_catalogue_reference_code array Reference code in the Borthwick Institute for Archives catalogue.
ui_redirect_link string Site-relative viewer link, carrying manifest and canvas query parameters.
ui_main_collection_title string
ui_external_image_url string
aggs_parent_id string IIIF Presentation 3 manifest identifier of the parent object.
aggs_main_collection_name string
aggs_main_collection_title string
aggs_parent_title string
aggs_creator string
aggs_date string
aggs_label string
aggs_subjects string
aggs_rights string
aggs_type string
aggs_work_type string
aggs_cp_court string York Cause Papers facet.
aggs_cp_case string
aggs_cp_details string
aggs_cp_outcome string
aggs_cp_date string
aggs_cp_abstract string
aggs_cp_parties_mentioned string
aggs_cp_other_individuals string
aggs_cp_witnesses string
aggs_cp_places string
aggs_ar_type string Archival-record facet.
aggs_ar_section string
aggs_ar_summary string
aggs_ar_language string
aggs_ar_subjects string
aggs_ar_people string
aggs_ar_places string
aggs_ar_groups string
aggs_ar_dates string
aggs_ar_referenced_by string
View JSON Schema on GitHub

JSON Schema

university-of-york-digital-collections-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/university-of-york/main/json-schema/university-of-york-digital-collections-item-schema.json",
  "title": "University of York Digital Collections Item",
  "description": "One indexed record from the University of York Digital Collections search API (discover.york.ac.uk/api/search-simple). Derived field-by-field from live responses captured 2026-08-30; every property below was observed in a real payload. Institution-operated surface.",
  "x-provenance": {
    "generated": "2026-08-30",
    "method": "derived",
    "source": "https://discover.york.ac.uk/api/search-simple?q=york&page=1&size=2"
  },
  "type": "object",
  "required": ["id"],
  "properties": {
    "id": {
      "type": "string",
      "description": "ARK-based item identifier under the University of York NAAN 36941. Doubles as the IIIF Image API identifier path.",
      "pattern": "^ark:/36941/",
      "examples": ["ark:/36941/806938/objects/17061"]
    },
    "title": { "type": "string" },
    "label": { "type": "string" },
    "summary": { "type": "string", "description": "Collection-level description text repeated onto each item." },
    "creator": { "type": "string" },
    "date": { "type": "string", "description": "Free-text date as catalogued, e.g. '1922-1963'." },
    "date_range": {
      "type": "object",
      "description": "Normalised date range, present only when the catalogue date could be parsed.",
      "properties": {
        "gte": { "type": "string", "format": "date" },
        "lte": { "type": "string", "format": "date" }
      }
    },
    "subjects": {
      "description": "Subject terms. Observed both as a bare string (often empty) and as an array of strings.",
      "oneOf": [
        { "type": "string" },
        { "type": "array", "items": { "type": "string" } }
      ]
    },
    "rights": { "type": "string" },
    "type": { "type": "string", "description": "Record type.", "examples": ["item", "manifest"] },
    "work_type": { "type": "string" },
    "parent_collection_id": { "type": "string" },
    "parent_collection_label": { "type": "string" },
    "borthwick_catalogue_reference_code": {
      "type": "array",
      "items": { "type": "string" },
      "description": "Reference code in the Borthwick Institute for Archives catalogue."
    },
    "ui_redirect_link": { "type": "string", "description": "Site-relative viewer link, carrying manifest and canvas query parameters." },
    "ui_main_collection_title": { "type": "string" },
    "ui_external_image_url": { "type": "string" },
    "aggs_parent_id": {
      "type": "string",
      "description": "IIIF Presentation 3 manifest identifier of the parent object.",
      "examples": ["ark:/36941/796351/presentation/3/manifest"]
    },
    "aggs_main_collection_name": { "type": "string" },
    "aggs_main_collection_title": { "type": "string" },
    "aggs_parent_title": { "type": "string" },
    "aggs_creator": { "type": "string" },
    "aggs_date": { "type": "string" },
    "aggs_label": { "type": "string" },
    "aggs_subjects": { "type": "string" },
    "aggs_rights": { "type": "string" },
    "aggs_type": { "type": "string" },
    "aggs_work_type": { "type": "string" },
    "aggs_cp_court": { "type": "string", "description": "York Cause Papers facet." },
    "aggs_cp_case": { "type": "string" },
    "aggs_cp_details": { "type": "string" },
    "aggs_cp_outcome": { "type": "string" },
    "aggs_cp_date": { "type": "string" },
    "aggs_cp_abstract": { "type": "string" },
    "aggs_cp_parties_mentioned": { "type": "string" },
    "aggs_cp_other_individuals": { "type": "string" },
    "aggs_cp_witnesses": { "type": "string" },
    "aggs_cp_places": { "type": "string" },
    "aggs_ar_type": { "type": "string", "description": "Archival-record facet." },
    "aggs_ar_section": { "type": "string" },
    "aggs_ar_summary": { "type": "string" },
    "aggs_ar_language": { "type": "string" },
    "aggs_ar_subjects": { "type": "string" },
    "aggs_ar_people": { "type": "string" },
    "aggs_ar_places": { "type": "string" },
    "aggs_ar_groups": { "type": "string" },
    "aggs_ar_dates": { "type": "string" },
    "aggs_ar_referenced_by": { "type": "string" }
  },
  "additionalProperties": true
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/university-of-york-digital-collections-item"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.