{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/scim-enterprise-group-list", "title": "scim-enterprise-group-list", "type": "object", "required": [ "schemas", "totalResults", "Resources", "startIndex", "itemsPerPage" ], "properties": { "schemas": { "type": "array", "description": "The URIs that are used to indicate the namespaces of the list SCIM schemas.", "items": { "type": "string", "enum": [ "urn:ietf:params:scim:api:messages:2.0:ListResponse" ] }, "example": [ "urn:ietf:params:scim:api:messages:2.0:ListResponse" ] }, "totalResults": { "type": "integer", "description": "Number of results found", "example": 1 }, "Resources": { "type": "array", "description": "Information about each provisioned group.", "items": { "$ref": "#/components/schemas/scim-enterprise-group-response" } }, "startIndex": { "type": "integer", "description": "A starting index for the returned page", "example": 1 }, "itemsPerPage": { "type": "integer", "description": "Number of objects per page", "example": 20 } } }