rgb-cln/doc/schemas/delinvoice.request.json

35 lines
554 B
JSON
Raw Permalink Normal View History

2022-04-01 05:12:45 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"label",
"status"
],
"properties": {
"label": {
"oneOf": [
{
"type": "string",
"description": ""
},
{
"type": "integer",
"description": ""
}
]
2022-04-01 05:12:45 +01:00
},
"status": {
"type": "string",
"enum": [
"paid",
"expired",
"unpaid"
]
},
"desconly": {
"type": "boolean"
2022-04-01 05:12:45 +01:00
}
}
}