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

24 lines
374 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": [
"label",
"status"
],
"properties": {
"label": {
"type": "string",
"description": ""
},
"status": {
"type": "string",
"enum": [
"paid",
"expired",
"unpaid"
]
}
}
}