core-lightning/doc/schemas/notification/custommsg.schema.json
Erik De Smedt 745f410aa6 Add schema's notifications
I've added the schema for a couple of notifications.
2024-05-16 14:00:18 +02:00

22 lines
554 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"added": "v24.05",
"required" : [
"peer_id", "payload"
],
"properties": {
"peer_id": {
"type": "pubkey",
"description" : "The id of the peer which sent the custom message",
"added" : "v24.05"
},
"payload": {
"type": "hex",
"description" : "The hex-encoded payload. The first 2 bytes represent the BOLT-8 message type followed by the message content",
"added" : "v24.05"
}
}
}