ONSdigital / csvw-check

A CLI to validate CSV-Ws (W3C's CSV on the Web standard).
Apache License 2.0
1 stars 1 forks source link

Ensure column to_json method supports all properties null #62

Closed josepajay closed 1 year ago

josepajay commented 3 years ago

Check every properties of column class and ensure they are optional ones. As the csv-w spec says,

All properties are optional.

In the case where the name and title properties are both absent, the CSV-W spec says

If the column description has neither name nor titles properties, the string "_col.[N]" where [N] is the column number, becomes the name annotation for the described column.

josepajay commented 3 years ago

We still need to implement

If the column description has neither name nor titles properties, the string "_col.[N]" where [N] is the column number, becomes the name annotation for the described column.