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