mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-06 05:49:30 +01:00
36 lines
863 B
JSON
36 lines
863 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"required": [ "help" ],
|
||
|
"properties": {
|
||
|
"help": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"additionalProperties": true,
|
||
|
"required": [ "command", "category", "description", "verbose" ],
|
||
|
"properties": {
|
||
|
"command": {
|
||
|
"type": "string",
|
||
|
"description": "the command"
|
||
|
},
|
||
|
"category": {
|
||
|
"type": "string",
|
||
|
"description": "the category for this command (useful for grouping)"
|
||
|
},
|
||
|
"description": {
|
||
|
"type": "string",
|
||
|
"description": "a one-line description of the purpose of this command"
|
||
|
},
|
||
|
"verbose": {
|
||
|
"type": "string",
|
||
|
"description": "a full description of this command (including whether it's deprecated)"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"format-hint": { }
|
||
|
}
|
||
|
}
|