{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateScimConfigurationResponseContent", "title": "UpdateScimConfigurationResponseContent", "type": "object", "additionalProperties": false, "required": [ "tenant_name", "connection_id", "connection_name", "strategy", "created_at", "updated_on", "mapping", "user_id_attribute" ], "properties": { "connection_id": { "type": "string", "description": "The connection's identifier" }, "connection_name": { "type": "string", "description": "The connection's name" }, "strategy": { "type": "string", "description": "The connection's strategy" }, "tenant_name": { "type": "string", "description": "The tenant's name" }, "user_id_attribute": { "type": "string", "description": "User ID attribute for generating unique user ids" }, "mapping": { "type": "array", "description": "The mapping between auth0 and SCIM", "items": { "$ref": "#/components/schemas/ScimMappingItem" } }, "created_at": { "type": "string", "description": "The ISO 8601 date and time the SCIM configuration was created at", "format": "date-time" }, "updated_on": { "type": "string", "description": "The ISO 8601 date and time the SCIM configuration was last updated on", "format": "date-time" } } }