mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
33 lines
757 B
JSON
33 lines
757 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"blacklist"
|
|
],
|
|
"properties": {
|
|
"blacklist": {
|
|
"type": "array",
|
|
"description": "the resulting blacklist ranges after the command",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"start",
|
|
"end"
|
|
],
|
|
"properties": {
|
|
"start": {
|
|
"type": "u64",
|
|
"description": "Unique id of first rune in this blacklist range"
|
|
},
|
|
"end": {
|
|
"type": "u64",
|
|
"description": "Unique id of last rune in this blacklist range"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|