{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateFieldConfigurationSchemeDetails",
"title": "UpdateFieldConfigurationSchemeDetails",
"additionalProperties": false,
"description": "The details of the field configuration scheme.",
"properties": {
"description": {
"description": "The description of the field configuration scheme.",
"maxLength": 1024,
"type": "string",
"writeOnly": true
},
"name": {
"description": "The name of the field configuration scheme. The name must be unique.",
"maxLength": 255,
"type": "string",
"writeOnly": true
}
},
"required": [
"name"
],
"type": "object"
}