{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ExpandedAppsResponse", "description": "An app that integrates with Zapier.", "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-schema/partner-api-expanded-apps-response-schema.json", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/Apps" }, "description": "A list of the Apps matching the request", "example": [ {} ] }, "meta": { "type": [ "object", "null" ], "additionalProperties": {}, "readOnly": true, "description": "Used for paginating results. Specifies the maximum number of items to return per page.", "example": {} }, "links": { "type": [ "object", "null" ], "additionalProperties": {}, "readOnly": true, "description": "Used for paginating results. Specifies the offset to use. Defaults to 0", "example": {} } }, "required": [ "data", "links", "meta" ] }