Properties
| Name | Type | Description |
|---|---|---|
| schemas | array | The URIs that are used to indicate the namespaces of the list SCIM schemas. |
| totalResults | integer | Number of results found |
| Resources | array | Information about each provisioned account. |
| startIndex | integer | A starting index for the returned page |
| itemsPerPage | integer | Number of objects per page |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/scim-enterprise-user-list",
"title": "scim-enterprise-user-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 account.",
"items": {
"$ref": "#/components/schemas/scim-enterprise-user-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
}
}
}