mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
4613b29815
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
28 lines
571 B
JSON
28 lines
571 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"subsystem",
|
|
"age"
|
|
],
|
|
"properties": {
|
|
"subsystem": {
|
|
"type": "string",
|
|
"enum": [
|
|
"succeededforwards",
|
|
"failedforwards",
|
|
"succeededpays",
|
|
"failedpays",
|
|
"paidinvoices",
|
|
"expiredinvoices"
|
|
],
|
|
"description": "What subsystem to clean"
|
|
},
|
|
"age": {
|
|
"type": "u64",
|
|
"description": "How many seconds old an entry must be to delete it"
|
|
}
|
|
}
|
|
}
|