core-lightning/doc/schemas/invoice.request.json

48 lines
832 B
JSON
Raw Normal View History

2022-04-01 06:12:45 +02:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"msatoshi",
"label",
"description"
],
"properties": {
"msatoshi": {
"type": "msat|any",
2022-04-01 06:12:45 +02:00
"description": ""
},
"description": {
"type": "string",
"description": ""
},
"label": {
"type": "string",
"description": ""
},
"expiry": {
"type": "",
"description": ""
},
"fallbacks": {
"type": "array",
"description": "",
"items": {
"type": "string"
}
},
"preimage": {
"type": "hex",
"description": ""
},
"exposeprivatechannels": {
"type": "bool",
"description": ""
},
"cltv": {
"type": "u32",
"description": ""
}
}
}