mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
42 lines
743 B
JSON
42 lines
743 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"hops",
|
|
"assocdata"
|
|
],
|
|
"properties": {
|
|
"hops": {
|
|
"type": "array",
|
|
"description": "",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"pubkey",
|
|
"payload"
|
|
],
|
|
"properties": {
|
|
"pubkey": {
|
|
"type": "pubkey"
|
|
},
|
|
"payload": {
|
|
"type": "hex"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"assocdata": {
|
|
"type": "hex",
|
|
"description": ""
|
|
},
|
|
"session_key": {
|
|
"type": "secret"
|
|
},
|
|
"onion_size": {
|
|
"type": "u16"
|
|
}
|
|
}
|
|
}
|