core-lightning/doc/schemas/notification/channel_opened.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

34 lines
No EOL
825 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"added": "v24.05",
"required" : [
"pubkey",
"funding_msat",
"funding_txid",
"channel_ready"
],
"properties": {
"id": {
"type": "pubkey",
"added" : "v24.05",
"description" : "The id of the peer which opened the channel"
},
"funding_msat": {
"type": "msat",
"added" : "v24.05",
"description" : "The amount of the funding transaction"
},
"funding_txid" : {
"type" : "txid",
"added" : "v24.05",
"description" : "The transaction id of the funding transaction"
},
"channel_ready" : {
"type" : "boolean",
"added" : "v24.05",
"description" : "true if the channel is ready"
}
}
}