mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-12-29 10:04:41 +01:00
fe86c117d9
After some discussion with @shesek, and my own usage, we agreed that a more comprehensive interface, which explicitly supports grouping, is desirable. Thus keys are now arrays, with the semantic that a key is either a parent or has a value, never both. For convenience in the JSON schema, we always return them as arrays, though we accept simple strings as arguments. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
28 lines
714 B
JSON
28 lines
714 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [ "key" ],
|
|
"properties": {
|
|
"key": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"description": "Part of the key added to the datastore"
|
|
}
|
|
},
|
|
"generation": {
|
|
"type": "u64",
|
|
"description": "The number of times this has been updated"
|
|
},
|
|
"hex": {
|
|
"type": "hex",
|
|
"description": "The hex data which has removed from the datastore"
|
|
},
|
|
"string": {
|
|
"type": "string",
|
|
"description": "The data as a string, if it's valid utf-8"
|
|
}
|
|
}
|
|
}
|