mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-03 20:44:54 +01:00
17 lines
446 B
JSON
17 lines
446 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"required": [ "key", "hex" ],
|
||
|
"properties": {
|
||
|
"key": {
|
||
|
"type": "string",
|
||
|
"description": "The key which has been added to the datastore"
|
||
|
},
|
||
|
"hex": {
|
||
|
"type": "hex",
|
||
|
"description": "The hex data which has been added to the datastore"
|
||
|
}
|
||
|
}
|
||
|
}
|