2021-08-25 04:50:12 +02:00
|
|
|
{
|
2021-11-04 15:15:51 +01:00
|
|
|
"$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 been added to the datastore"
|
|
|
|
},
|
|
|
|
"string": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "The data as a string, if it's valid utf-8"
|
2021-08-25 04:50:12 +02:00
|
|
|
}
|
2021-11-04 15:15:51 +01:00
|
|
|
}
|
2021-08-25 04:50:12 +02:00
|
|
|
}
|