mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-12-29 10:04:41 +01:00
28 lines
555 B
JSON
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"
|
||
|
}
|
||
|
}
|
||
|
}
|