{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TransactionCustomField", "type": "object", "properties": { "name": { "type": "string" }, "value": { "type": "string" }, "type": { "allOf": [ { "$ref": "#/components/schemas/TransactionCustomFieldTypeEnum" } ], "readOnly": true } }, "required": [ "name", "value" ] }