{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ScimUserListResponse", "title": "ScimUserListResponse", "type": "object", "properties": { "schemas": { "type": "array", "items": { "type": "string" }, "description": "The SCIM schema URIs for this response." }, "totalResults": { "type": "integer", "description": "The total number of matching users." }, "startIndex": { "type": "integer", "description": "The 1-based index of the first result." }, "itemsPerPage": { "type": "integer", "description": "The number of results returned in this page." }, "Resources": { "type": "array", "description": "Array of SCIM user resources.", "items": { "$ref": "#/components/schemas/ScimUser" } } } }