core-lightning/doc/schemas/commando-blacklist.request.json
Rusty Russell dadbdf488c schemas: deprecated is now a range.
Don't assume removal is +6 months, but have a start deprecation/end support range.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2024-01-26 10:30:22 +10:30

21 lines
441 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [],
"added": "v23.05",
"deprecated": [
"v23.08",
"v24.08"
],
"properties": {
"start": {
"type": "u64",
"description": "first rune unique id to blacklist"
},
"end": {
"type": "u64",
"description": "final rune unique id to blacklist (defaults to start)"
}
}
}