{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListActionBindingsPaginatedResponseContent",
"title": "ListActionBindingsPaginatedResponseContent",
"type": "object",
"additionalProperties": false,
"properties": {
"total": {
"type": "number",
"description": "The total result count.",
"default": 1
},
"page": {
"type": "number",
"description": "Page index of the results being returned. First page is 0.",
"default": 0
},
"per_page": {
"type": "number",
"description": "Number of results per page.",
"default": 20
},
"bindings": {
"type": "array",
"description": "The list of actions that are bound to this trigger in the order in which they will be executed.",
"items": {
"$ref": "#/components/schemas/ActionBinding"
}
}
}
}