1{ 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "required": [ "unsigned_tx", "txid" ], 5 "properties": { 6 "unsigned_tx": { 7 "type": "hex", 8 "description": "the unsigned transaction" 9 }, 10 "txid": { 11 "type": "txid", 12 "description": "the transaction id of *unsigned_tx*" 13 } 14 } 15} 16