I want to have a JSON Schema with unknown property names in an array of objects. A good example is the meta-data of a web page:
"meta": {
"type": "array",
"items": {
"type": "object",
"properties": {
"unknown-attribute-1": {
"type": "string"
},
"unknown-attribute-2": {
"type": "string"
},
...
}
}
}
Any ideas please, or other way to reach the same?