You have defined your schema correctly, except that it doesn't match the data you say you are validating. If you change the property names to match the schema, you still have one issue. If you want to allow "toll" and "message" to be null, you can do the following.
{
"type": "array",
"items": {
"type": "object",
"properties": {
"loc": {
"type": "string"
},
"toll": {
"type": ["string", "null"]
},
"message": {
"type": ["string", "null"]
}
},
"required": [
"loc"
]
}
}
However, that isn't related to the error message you are getting. That message means that data you are validating is not an array. The example data you posted should not result in this error. Are you running the validator on some data other than what is posted in the question?
Answer from Jason Desrosiers on Stack OverflowList of objects with required values
jsonschema - setting required on a json-schema array - Stack Overflow
JSON Schema: How to require a value to be one of another properties array values
JSON Schema for a list of objects that must contain one of three default props
Videos
I got it to work using this validator by nesting the part of the schema for the array elements inside a object with the name items. The schema now has two nested items fields, but that is because one is a keyword in JSONSchema and the other because your JSON actually has a field called items
JSONSchema:
{
"type":"object",
"properties":{
"items":{
"type":"array",
"items":{
"properties":{
"item_id":{
"type":"number"
},
"quantity":{
"type":"number"
},
"price":{
"type":"number"
},
"title":{
"type":"string"
},
"description":{
"type":"string"
}
},
"required":[
"item_id",
"quantity",
"price",
"title",
"description"
],
"additionalProperties":false
}
}
}
}
JSON:
{
"items":[
{
"item_id":1,
"quantity":3,
"price":30,
"title":"item1 new name"
},
{
"item_id":1,
"quantity":16,
"price":30,
"title":"Test Two"
}
]
}
Output with two errors about missing description fields:
[ {
"level" : "error",
"schema" : {
"loadingURI" : "#",
"pointer" : "/properties/items/items"
},
"instance" : {
"pointer" : "/items/0"
},
"domain" : "validation",
"keyword" : "required",
"message" : "missing required property(ies)",
"required" : [ "description", "item_id", "price", "quantity", "title" ],
"missing" : [ "description" ]
}, {
"level" : "error",
"schema" : {
"loadingURI" : "#",
"pointer" : "/properties/items/items"
},
"instance" : {
"pointer" : "/items/1"
},
"domain" : "validation",
"keyword" : "required",
"message" : "missing required property(ies)",
"required" : [ "description", "item_id", "price", "quantity", "title" ],
"missing" : [ "description" ]
} ]
Try pasting the above into here to see the same output generated.
I realize this is an old thread, but since this question is linked from jsonschema.net, I thought it might be worth chiming in...
The problem with your original example is that you're declaring "properties" for an "array" type, rather than declaring "items" for the array, and then declaring an "object" type (with "properties") that populates the array. Here's a revised version of the original schema snippet:
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"item_id": {"type" : "number"},
"quantity": {"type": "number"},
"price": {"type" : "decimal"},
"title": {"type": "string"},
"description": {"type": "string"}
},
"required": ["item_id","quantity","price","title","description"],
"additionalProperties" : false
}
}
I would recommend against using the term "items" for the name of the array, to avoid confusion, but there's nothing stopping you from doing that...
So, I'm struggling to figure out how to word this, so apologies if this is confusing/unclear.
I have a (simplified) schema like so:
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "fields/checkbox-multiple.json",
"title": "...",
"description": "...",
"type": "object",
"required": ["choices"],
"properties": {
"default": {
"description": "Default value of the field (optional)"
},
"choices": {
"description": "Choices for any type which has a multiple settings e.g. checkbox, radio, select etc",
"type": "array",
"minItems": 1,
"items": {
"required": ["value", "text"],
"properties": {
"value": {
"description": "Value to be used in the field. This will be the setting value e.g. true, false for a radio field"
},
"text": {
"description": "Text displayed on the field in the Customizer",
"type": "string"
}
}
}
}
}
}So the schema essentially creates a HTML Select field.
choices.value is the value of option tag, choices.text is the displayed text, fairly straight forward.
The default, is simply what the value of the input should be by default (again, sorry for stating the obvious).
Here's some React psuedo-code to make this clearer:
<select name="...">
{props.choices.map((choice) => {
return (props.default === props.value)
? <option value={choice.value} selected>{choice.text}</option>
: <option value={choices.value}>{choice.text}</option>
});
</select>Get to the question already!
So you may have already gotten it...The value of default MUST BE one of the choices.value ...errr...values.
Something like this in my head, but Googling is giving me everything but what I'm looking for...
{
"default": {
"enum": {
"oneOf": #choices.values.items.value
}
}
}Also, default is not required, but if it is given it has to be one of the choices.
Hope that makes sense! Thank in advance