{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ClientMyOrganizationPatchConfiguration",
"title": "ClientMyOrganizationPatchConfiguration",
"type": [
"object",
"null"
],
"description": "Configuration related to the My Organization Configuration for the client.",
"additionalProperties": false,
"required": [
"allowed_strategies",
"connection_deletion_behavior"
],
"x-release-lifecycle": "EA",
"properties": {
"connection_profile_id": {
"type": "string",
"description": "The connection profile ID that this client should validate against.",
"format": "connection-profile-id"
},
"user_attribute_profile_id": {
"type": "string",
"description": "The user attribute profile ID that this client should validate against.",
"format": "user-attribute-profile-id"
},
"allowed_strategies": {
"type": "array",
"description": "The allowed connection strategies for the My Organization Configuration.",
"items": {
"$ref": "#/components/schemas/ClientMyOrganizationConfigurationAllowedStrategiesEnum"
}
},
"connection_deletion_behavior": {
"$ref": "#/components/schemas/ClientMyOrganizationDeletionBehaviorEnum"
}
}
}