mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-10 17:19:15 +01:00
29 lines
702 B
JSON
29 lines
702 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"required": [
|
||
|
"datastoreusage"
|
||
|
],
|
||
|
"properties": {
|
||
|
"datastoreusage": {
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"required": [
|
||
|
"key",
|
||
|
"total_bytes"
|
||
|
],
|
||
|
"properties": {
|
||
|
"key": {
|
||
|
"type": "string",
|
||
|
"description": "The key from which the database was traversed."
|
||
|
},
|
||
|
"total_bytes": {
|
||
|
"type": "u64",
|
||
|
"description": "The total bytes that are stored under the *key*, including the all descendants data and the size of the keys themselves."
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|