{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SnapshotManifestItem", "title": "SnapshotManifestItem", "type": "object", "properties": { "identifier": { "type": "string" }, "content_hash": { "type": "string" }, "width": { "type": "integer", "nullable": true }, "height": { "type": "integer", "nullable": true }, "metadata": { "type": "object", "additionalProperties": true } }, "required": [ "content_hash", "identifier" ] }