The home of JSON Schema validation right in your browser 🚧 Alpha 🚧 draft-7 only
Valid JSON:
xxxxxxxxxx
{
"Images": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"Versions": {
"type": "array",
"allOf": [
{
"contains": {
"type": "object",
"properties": {
"imgProperties": {
"type": "string",
"pattern": "foo1|bar1"
}
},
"required": [
"imgProperties"
]
}
},
{
"contains": {
"type": "object",
"properties": {
"imgProperties": {
"type": "string",
"pattern": "foo2|bar2"
}
},
"required": [
"imgProperties"
]
}
}
]
}
}
}
}
}
Valid JSON:
xxxxxxxxxx
{
"Images": [
{
"Versions": [
{
"imgProperties": "x"
},
{
"imgProperties": "z"
}
]
}
]
}
jsonschema.dev@relequestual Thanks to Sponsors: