core-lightning/doc/schemas/setchannel.request.json
Christian Decker 93b315756f schema: Add enforcedelay to setchannel
This was missing in the last version
2022-09-28 15:13:07 +02:00

29 lines
433 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"id"
],
"properties": {
"id": {
"type": "string"
},
"feebase": {
"type": "msat"
},
"feeppm": {
"type": "u32"
},
"htlcmin": {
"type": "msat"
},
"htlcmax": {
"type": "msat"
},
"enforcedelay": {
"type": "u32"
}
}
}