{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomFieldValue", "title": "CustomFieldValue", "type": "object", "properties": { "custom_field_definition_id": { "type": "integer" }, "value": { "oneOf": [ { "type": "string" }, { "type": "number" }, { "type": "integer" }, { "type": "boolean" }, { "type": "array", "items": { "type": "integer" } }, { "type": "null" } ] } } }