core-lightning/doc/schemas/delinvoice.request.json
2022-04-02 09:46:01 +10:30

24 lines
374 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"label",
"status"
],
"properties": {
"label": {
"type": "string",
"description": ""
},
"status": {
"type": "string",
"enum": [
"paid",
"expired",
"unpaid"
]
}
}
}