1{ 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "additionalProperties": false, 5 "required": [ "channel_id", "tx", "txid" ], 6 "properties": { 7 "channel_id": { 8 "type": "hex", 9 "description": "the channel id of the channel", 10 "maxLength": 64, 11 "minLength": 64 12 }, 13 "tx": { 14 "type": "hex", 15 "description": "the funding transaction" 16 }, 17 "txid": { 18 "type": "txid", 19 "description": "The txid of the **tx**" 20 } 21 } 22} 23