mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
Don't assume removal is +6 months, but have a start deprecation/end support range. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
37 lines
782 B
JSON
37 lines
782 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [],
|
|
"deprecated": [
|
|
"v23.08",
|
|
"v23.05"
|
|
],
|
|
"properties": {
|
|
"rune": {
|
|
"type": "string",
|
|
"description": "optional rune to add to"
|
|
},
|
|
"restrictions": {
|
|
"oneOf": [
|
|
{
|
|
"type": "array",
|
|
"description": "array of restrictions to add to rune",
|
|
"items": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "string",
|
|
"enum": [
|
|
"readonly"
|
|
],
|
|
"description": "readonly string to indicate standard readonly restrictions."
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|