{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CustomFieldValueRead", "type": "object", "properties": { "id": { "type": "integer", "readOnly": true }, "value": { "oneOf": [ { "type": "string" }, { "type": "boolean" } ], "description": "Given the *incoming* primitive data, return the value for this field\nthat should be validated and transformed to a native value.", "readOnly": true }, "field": { "$ref": "#/components/schemas/CustomFieldRead" } }, "required": [ "field" ] }