This new JTS type will be identical to array, except it will have a mandatory attribute schema which will contain a valid JSON Table Schema for the items in the array.
For example:
"schema": {
"fields": [
{ "name": "tender-id", "type": "string", "constraints": {"required": true} },
{ "name": "tender-documents",
"type": "table",
"schema": {
"fields": [
{ "name": "document-date", "type": "date"},
{ "name": "document-title", "type": "string"},
{ "name": "document-url", "type": "string", "format": "uri"}
]
}
}
]
}
This new JTS type will be identical to
array, except it will have a mandatory attributeschemawhich will contain a valid JSON Table Schema for the items in the array.For example: