This repository was archived by the owner on Jan 21, 2022. It is now read-only.

Description
think "windows" of Json schema(A) is old version, is B valid?
A
"windows": {
"type": "array",
"items": {
"title": "cwindow",
"type": "object",
"properties": {
"charge": {
"type": "number"
}
}
B
"windows": {
"type": "array",
"items": {
"type": "array",
"items": {
"title": "cwindow",
"type": "object",
"properties": {
"charge": {
"type": "number"
}
}
}
}
}