mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-12-28 01:24:42 +01:00
217ce4c03c
This was likely missed during the zeroconf PR. Changelog-None
50 lines
911 B
JSON
50 lines
911 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"id",
|
|
"amount"
|
|
],
|
|
"properties": {
|
|
"id": {
|
|
"type": "pubkey",
|
|
"description": "id is the peer id obtained from connect."
|
|
},
|
|
"amount": {
|
|
"type": "msat_or_all"
|
|
},
|
|
"feerate": {
|
|
"type": "feerate"
|
|
},
|
|
"announce": {
|
|
"type": "boolean"
|
|
},
|
|
"minconf": {
|
|
"type": "u32"
|
|
},
|
|
"push_msat": {
|
|
"type": "msat"
|
|
},
|
|
"close_to": {
|
|
"type": "string"
|
|
},
|
|
"request_amt": {
|
|
"type": "msat"
|
|
},
|
|
"compact_lease": {
|
|
"type": "string"
|
|
},
|
|
"utxos": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "outpoint"
|
|
}
|
|
},
|
|
"mindepth": {
|
|
"description": "Number of confirmations required before we consider the channel active",
|
|
"type": "u32"
|
|
}
|
|
}
|
|
}
|