{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RegisterCimdClientResponseContent", "title": "RegisterCimdClientResponseContent", "type": "object", "description": "Response after successfully registering or updating a CIMD client", "additionalProperties": true, "required": [ "client_id", "mapped_fields", "validation" ], "properties": { "client_id": { "type": "string", "description": "The Auth0 client_id of the created or updated client" }, "mapped_fields": { "$ref": "#/components/schemas/CimdMappedClientFields" }, "validation": { "$ref": "#/components/schemas/CimdValidationResult" } } }