{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AuthRoleGetResponse", "title": "AuthRoleGetResponse", "type": "object", "description": "Response from a role get operation", "properties": { "header": { "$ref": "#/components/schemas/ResponseHeader" }, "perm": { "type": "array", "description": "List of permissions assigned to the role", "items": { "$ref": "#/components/schemas/Permission" } } } }