CSVw, aka CSV on the Web, is a data validation language created in 2014 by Ivan Herman.
#1050on PLDB | 10Years Old |
git clone https://github.com/w3c/csvw
The CSV on the Web Working Group has developed standard ways to express useful metadata about CSV files and other kinds of tabular data.
{
"@context": "http://www.w3.org/ns/csvw",
"url": "countries.csv",
"tableSchema": {
"aboutUrl": "http://example.org/country/{code}",
"columns": [{
"titles": "country",
"name": "code"
},{
"titles": "country group"
},{
"titles": "name (en)",
"lang": "en"
},{
"titles": "name (fr)",
"lang": "fr"
},{
"titles": "name (de)",
"lang": "de"
},{
"titles": "latitude",
"datatype": "number"
},{
"titles": "longitude",
"datatype": "number"
}]
}
}