{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomField",
"title": "Custom Field",
"type": "object",
"properties": {
"fieldId": {
"type": "string",
"description": ""
},
"fieldValue": {
"type": "string",
"description": "This can also be an array for fields that need to support list of values; for example, a set of checkboxes."
}
},
"x-internal": false
}