core-lightning/doc/schemas/check.schema.json
Rusty Russell 3bc5d47aa2 doc/schemas: add some simple schemas and generate manpages from them
addgossip, check, createinvoice, createonion.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2021-05-27 20:28:49 +09:30

13 lines
288 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"command_to_check": {
"type": "string",
"description": "the *command_to_check* argument"
}
},
"required": [ "command_to_check" ]
}