{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExpandedZapsResponse", "title": "ExpandedZapsResponse", "type": "object", "description": "A page of returned Zaps.", "properties": { "links": { "type": "object", "additionalProperties": { "type": "string", "nullable": true }, "readOnly": true, "description": "Links related to the response data", "example": {} }, "meta": { "type": "object", "additionalProperties": {}, "readOnly": true, "description": "Metadata about the response", "example": {} }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/ExpandedZap" }, "description": "The (potentially) expanded data for Zaps that matched the request", "example": [ {} ] } }, "required": [ "data", "links", "meta" ] }