{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FieldConfiguration",
"title": "FieldConfiguration",
"additionalProperties": false,
"description": "Details of a field configuration.",
"properties": {
"description": {
"description": "The description of the field configuration.",
"type": "string"
},
"id": {
"description": "The ID of the field configuration.",
"format": "int64",
"type": "integer"
},
"isDefault": {
"description": "Whether the field configuration is the default.",
"type": "boolean"
},
"name": {
"description": "The name of the field configuration.",
"type": "string"
}
},
"required": [
"description",
"id",
"name"
],
"type": "object"
}