I have a JSON file which contains a list of items. The only thing stored in this file is the items as a array. e.g:
[
{...},
{...},
{...},
]
I want to define a schema file for this. This seems fine as the initial type can be set to array and I can define items as a type. But I want to reference the schema in the item json file. Unfortunately it is not an object so I cannot add the "$schema"
key. I could of course make the json a object with only one key that has the array value but this doesn't seem to be good design.
Does the schema system seems to have some design fault or is top level array json unsupported?
I think you may have assumed that putting $schema
in your JSON data has any meaning according to JSON Schema.
But I want to reference the schema in the item json file.
Any meaning given to it is not from the JSON Schema specification.
$schema
is used in JSON Schemas. The specification does not define any method to allow the JSON document to identify as one which should conform to a schema.
There is a method that utilities HTTP headers, but that is all.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With