mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
Some rpc commands did not have their corresponding *.request.json files to generate the consolidated json
29 lines
629 B
JSON
29 lines
629 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": true,
|
|
"required": [
|
|
"subcommand"
|
|
],
|
|
"properties": {
|
|
"subcommand": {
|
|
"type": "string",
|
|
"enum": [
|
|
"start",
|
|
"stop",
|
|
"rescan",
|
|
"startdir",
|
|
"list"
|
|
],
|
|
"description": "determines what action is taken"
|
|
},
|
|
"plugin": {
|
|
"type": "string",
|
|
"description": "*path* or *name* of a plugin executable to start or stop"
|
|
},
|
|
"directory": {
|
|
"type": "string",
|
|
"description": "*path* of a directory containing plugins"
|
|
}
|
|
}
|
|
}
|