core-lightning/doc/schemas/commando.request.json
Rusty Russell cf28cff398 doc: document commando and commando-rune.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2022-07-17 08:51:02 +09:30

28 lines
555 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [
"peer_id",
"method"
],
"properties": {
"peer_id": {
"type": "pubkey",
"description": "peer to command"
},
"method": {
"type": "string",
"description": "method to invoke on peer"
},
"params": {
"type": "object",
"description": "parameters for method"
},
"rune": {
"type": "string",
"description": "rune to authorize the command"
}
}
}