{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListActionsPaginatedResponseContent", "title": "ListActionsPaginatedResponseContent", "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 }, "actions": { "type": "array", "description": "The list of actions.", "items": { "$ref": "#/components/schemas/Action" } } } }