{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ArchivalMemorySearchResponse", "title": "ArchivalMemorySearchResponse", "properties": { "results": { "items": { "$ref": "#/components/schemas/ArchivalMemorySearchResult" }, "type": "array", "title": "Results", "description": "List of search results matching the query" }, "count": { "type": "integer", "title": "Count", "description": "Total number of results returned" } }, "type": "object", "required": [ "results", "count" ] }