{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/zapier/refs/heads/main/json-structure/partner-api-actions-response-structure.json", "name": "ActionsResponse", "description": "A valid response for fetching available actions for the App", "type": "object", "properties": { "links": { "allOf": [ { "$ref": "#/components/schemas/Links" } ], "description": "The links object returned in paginated response bodies.", "example": "example-value" }, "meta": { "allOf": [ { "$ref": "#/components/schemas/BaseMeta" } ], "description": "The meta object returned in paginated response bodies.", "example": "example-value" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Action" }, "description": "List of Actions for the provided App", "example": [ {} ] } }, "required": [ "links", "meta" ] }