diff options
author | Valery Piashchynski <[email protected]> | 2022-04-05 18:52:33 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-04-05 18:52:33 +0200 |
commit | 08b74400f5ebd75bd33af12c645a38fb38b73c79 (patch) | |
tree | 5aee2c71449a32ab449d6349151fa37d1aeab8e7 /schemas | |
parent | e0eb40fb6469155521f4545aa3a436d4dd16c5c7 (diff) |
json schema: add version
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'schemas')
-rw-r--r-- | schemas/config/2.0.schema.json | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/schemas/config/2.0.schema.json b/schemas/config/2.0.schema.json index 3c996925..344f77a4 100644 --- a/schemas/config/2.0.schema.json +++ b/schemas/config/2.0.schema.json @@ -6,6 +6,14 @@ "additionalProperties": true, "minProperties": 1, "properties": { + "version": { + "description": "configuration version", + "type": "string", + "default": "2.7", + "enum": [ + "2.7" + ] + }, "rpc": { "type": "object", "properties": { |