A list of rulesets.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/governance-api-ruleset-list-schema.json", "title": "RulesetList", "description": "A list of rulesets.", "type": "object", "properties": { "count": { "type": "integer", "description": "Number of rulesets returned.", "example": 2 }, "list": { "type": "array", "description": "List of rulesets.", "items": { "$ref": "#/components/schemas/RulesetInfo" } }, "pagination": { "$ref": "#/components/schemas/Pagination" } } }