Section 6.1 of "Metadata Vocabulary for Tabular Data" has a number of examples that suggest tableSchema can have array content, e.g. ``` { "@context": { "http://www.w3.org/ns/csvw", { "@language": "en" } }, "@type": "Table", "url": "http://example.com/table.csv", "tableSchema": [...], "dc:title": "The title of this Table" } ``` https://www.w3.org/TR/2015/REC-tabular-metadata-20151217/#h-normalization-examples The ellipses are clear enough, but I'd expect them to appear in an object (curly braces) rather than an array (square brackets), e.g. ``` { "@context": { "http://www.w3.org/ns/csvw", { "@language": "en" } }, "@type": "Table", "url": "http://example.com/table.csv", "tableSchema": {...}, "dc:title": "The title of this Table" } ```
Section 6.1 of "Metadata Vocabulary for Tabular Data" has a number of examples that suggest tableSchema can have array content, e.g.
https://www.w3.org/TR/2015/REC-tabular-metadata-20151217/#h-normalization-examples
The ellipses are clear enough, but I'd expect them to appear in an object (curly braces) rather than an array (square brackets), e.g.