{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetRolesResponse", "title": "GetRolesResponse", "type": "object", "required": [ "schema", "totalResults", "resources" ], "properties": { "schema": { "type": "array", "items": { "type": "string", "example": "urn:ietf:params:scim:api:messages:2.0:ListResponse" }, "description": "Input JSON schema." }, "totalResults": { "type": "number", "example": 1, "description": "Total Roles assigned to that org." }, "resources": { "type": "array", "items": { "$ref": "#/components/schemas/Resource" }, "description": "List of Roles assigned to Org." } } }