feat: aggregate defaults and values

- Output merged defaults and values
- Add "check" command
This commit is contained in:
2022-09-27 22:20:44 +02:00
committed by Bornholm
parent 53b2bba28b
commit f4b3d8f532
26 changed files with 3229 additions and 65 deletions

View File

@ -0,0 +1,5 @@
{
"foo": {
"bar": "test"
}
}

View File

@ -0,0 +1,17 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"foo": {
"type": "object",
"properties": {
"bar": {
"type": "string"
}
},
"required": ["bar"]
}
},
"required": ["foo"],
"additionalProperties": true
}

View File

@ -0,0 +1,5 @@
{
"foo": {
"bar": false
}
}

View File

@ -0,0 +1,3 @@
{
"test": 1
}