core-lightning/doc/schemas/notification/block_added.schema.json

17 lines
332 B
JSON
Raw Normal View History

{
"$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"
}
}
}