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

17 lines
No EOL
332 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"added": "v24.05",
"required" : ["hash", "height"],
"properties": {
"hash": {
"type": "hash",
"added" : "v24.05"
},
"height" : {
"type" : "u32",
"added" : "v24.05"
}
}
}