core-lightning/doc/schemas/autocleaninvoice.request.json
Christian Decker 3c32f7d8f6 json-rpc: Add request stubs for a couple of calls
These are required so we can generate the requests, not just the
responses. We'll add more as we test compatibility with our generation
code.
2022-02-11 16:02:25 +01:00

17 lines
424 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [],
"properties": {
"expired_by": {
"type": "u64",
"description": "How long an invoice must be expired (seconds) before we delete it."
},
"cycle_seconds": {
"type": "u64",
"description": "The interval (in seconds) between cleaning expired invoices"
}
}
}