{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ContextualConfiguration",
"title": "ContextualConfiguration",
"additionalProperties": false,
"description": "Details of the contextual configuration for a custom field.",
"properties": {
"configuration": {
"description": "The field configuration."
},
"fieldContextId": {
"description": "The ID of the field context the configuration is associated with.",
"readOnly": true,
"type": "string"
},
"id": {
"description": "The ID of the configuration.",
"type": "string"
},
"schema": {
"description": "The field value schema."
}
},
"required": [
"fieldContextId",
"id"
],
"type": "object"
}