{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetActionModulesResponseContent", "title": "GetActionModulesResponseContent", "type": "object", "additionalProperties": false, "properties": { "modules": { "type": "array", "description": "A list of ActionsModule objects.", "items": { "$ref": "#/components/schemas/ActionModuleListItem" } }, "total": { "type": "integer", "description": "The total number of modules in the tenant." }, "page": { "type": "integer", "description": "The page index of the returned results." }, "per_page": { "type": "integer", "description": "The number of results requested per page." } } }