Files
palladum-lightning/doc/schemas/listdatastore.json
ShahanaFarooqui ad6a599d51 schemas: remove lightning- prefix from filename
This commit will fail in `make` due to unchanged scripts. They will be added in the next commit.
2025-04-15 15:17:14 +09:30

144 lines
3.4 KiB
JSON

{
"$schema": "../rpc-schema-draft.json",
"type": "object",
"rpc": "listdatastore",
"title": "Command for listing (plugin) data",
"description": [
"The **listdatastore** RPC command allows plugins to fetch data which was stored in the Core Lightning database."
],
"request": {
"required": [],
"additionalProperties": false,
"properties": {
"key": {
"oneOf": [
{
"type": "array",
"description": [
"All immediate children of the *key* (or root children) are returned.",
" Using the first element of the key as the plugin name (e.g. `[ 'summary' ]`) is recommended.",
" An array of values to form a hierarchy (though a single value is treated as a one-element array)."
],
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
}
}
},
"response": {
"required": [
"datastore"
],
"additionalProperties": false,
"properties": {
"datastore": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"key"
],
"properties": {
"key": {
"type": "array",
"items": {
"type": "string",
"description": [
"Part of the key added to the datastore."
]
}
},
"generation": {
"type": "u64",
"description": [
"The number of times this has been updated."
]
},
"hex": {
"type": "hex",
"description": [
"The hex data from the datastore."
]
},
"string": {
"type": "string",
"description": [
"The data as a string, if it's valid utf-8."
]
}
}
}
}
}
},
"errors": [
"The following error codes may occur:",
"",
"- -32602: invalid parameters."
],
"author": [
"Rusty Russell <<rusty@rustcorp.com.au>> is mainly responsible."
],
"see_also": [
"lightning-datastore(7)",
"lightning-deldatastore(7)",
"lightning-datastoreusage(7)"
],
"resources": [
"Main web site: <https://github.com/ElementsProject/lightning>"
],
"examples": [
{
"request": {
"id": "example:listdatastore#1",
"method": "listdatastore",
"params": {
"key": [
"employee"
]
}
},
"response": {
"datastore": [
{
"key": [
"employee",
"index"
],
"generation": 0,
"hex": "736176696e6720656d706c6f796565206b65797320746f207468652073746f7265",
"string": "saving employee keys to the store"
}
]
}
},
{
"request": {
"id": "example:listdatastore#2",
"method": "listdatastore",
"params": {
"key": "somekey"
}
},
"response": {
"datastore": [
{
"key": [
"somekey"
],
"generation": 0,
"hex": "61",
"string": "a"
}
]
}
}
]
}