1{ 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "additionalProperties": false, 5 "required": [ "tx", "txid" ], 6 "properties": { 7 "tx": { 8 "type": "hex", 9 "description": "The raw transaction which was sent" 10 }, 11 "txid": { 12 "type": "txid", 13 "description": "The txid of the **tx**" 14 } 15 } 16} 17