Skip to content

Examples 41-48 suggest tableSchema can have array content #855

Open
@mgoodhand

Description

@mgoodhand

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"
}

Metadata

Metadata

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions