mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
4613b29815
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
125 lines
3.3 KiB
JSON
125 lines
3.3 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": true,
|
|
"required": [
|
|
"autoclean"
|
|
],
|
|
"properties": {
|
|
"autoclean": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"succeededforwards": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"cleaned",
|
|
"uncleaned"
|
|
],
|
|
"properties": {
|
|
"cleaned": {
|
|
"type": "u64",
|
|
"description": "total number of deletions done this run"
|
|
},
|
|
"uncleaned": {
|
|
"type": "u64",
|
|
"description": "the total number of entries *not* deleted this run"
|
|
}
|
|
}
|
|
},
|
|
"failedforwards": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"cleaned",
|
|
"uncleaned"
|
|
],
|
|
"properties": {
|
|
"cleaned": {
|
|
"type": "u64",
|
|
"description": "total number of deletions done this run"
|
|
},
|
|
"uncleaned": {
|
|
"type": "u64",
|
|
"description": "the total number of entries *not* deleted this run"
|
|
}
|
|
}
|
|
},
|
|
"succeededpays": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"cleaned",
|
|
"uncleaned"
|
|
],
|
|
"properties": {
|
|
"cleaned": {
|
|
"type": "u64",
|
|
"description": "total number of deletions done this run"
|
|
},
|
|
"uncleaned": {
|
|
"type": "u64",
|
|
"description": "the total number of entries *not* deleted this run"
|
|
}
|
|
}
|
|
},
|
|
"failedpays": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"cleaned",
|
|
"uncleaned"
|
|
],
|
|
"properties": {
|
|
"cleaned": {
|
|
"type": "u64",
|
|
"description": "total number of deletions done this run"
|
|
},
|
|
"uncleaned": {
|
|
"type": "u64",
|
|
"description": "the total number of entries *not* deleted this run"
|
|
}
|
|
}
|
|
},
|
|
"paidinvoices": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"cleaned",
|
|
"uncleaned"
|
|
],
|
|
"properties": {
|
|
"cleaned": {
|
|
"type": "u64",
|
|
"description": "total number of deletions done this run"
|
|
},
|
|
"uncleaned": {
|
|
"type": "u64",
|
|
"description": "the total number of entries *not* deleted this run"
|
|
}
|
|
}
|
|
},
|
|
"expiredinvoices": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"cleaned",
|
|
"uncleaned"
|
|
],
|
|
"properties": {
|
|
"cleaned": {
|
|
"type": "u64",
|
|
"description": "total number of deletions done this run"
|
|
},
|
|
"uncleaned": {
|
|
"type": "u64",
|
|
"description": "the total number of entries *not* deleted this run"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|