{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ImageListResponse", "title": "ImageListResponse", "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string", "const": "backupImage" }, "id": { "type": "string" }, "attributes": { "$ref": "#/components/schemas/ImageAttributes" }, "links": { "type": "object", "properties": { "self": { "type": "object", "properties": { "href": { "type": "string", "format": "uri" } } } } } } }, "example": [] }, "meta": { "$ref": "#/components/schemas/PaginationMeta" } } }