mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
74eeaa8213
And a new "u8" type. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
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": { }
|
|
}
|
|
}
|