{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListSCIMConfigurationsResponseContent", "title": "ListSCIMConfigurationsResponseContent", "type": "object", "additionalProperties": false, "required": [ "scim_configurations" ], "properties": { "scim_configurations": { "type": "array", "description": "List of SCIM configurations", "items": { "$ref": "#/components/schemas/ScimConfiguration" } }, "next": { "type": "string", "description": "The cursor to be used as the \"from\" query parameter for the next page of results." } } }