core-lightning/doc/schemas/close.schema.json
Rusty Russell 5d7203ed6b doc/schemas: create close schema.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2021-05-27 20:28:49 +09:30

42 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": [ "type" ],
"properties": {
"type": {
"type": "string",
"enum": [ "mutual", "unilateral", "unopened" ],
"description": "Whether we successfully negotiated a mutual close, closed without them, or discarded not-yet-opened channel"
}
},
"if": {
"properties": {
"type": {
"type": "string",
"enum": [ "mutual", "unilateral" ]
}
}
},
"then": {
"additionalProperties": false,
"required": [ "tx", "txid" ],
"properties": {
"type": { },
"tx": {
"type": "hex",
"description": "the raw bitcoin transaction used to close the channel (if it was open)"
},
"txid": {
"type": "txid",
"description": "the transaction id of the *tx* field"
}
}
},
"else": {
"additionalProperties": false,
"properties": {
"type": { }
}
}
}