Please check theerrata for any errors or issues reported since publication.
This document is also available in this non-normative format:ePub
The English version of this specification is the only normative version. Non-normativetranslations may also be available.
Copyright © 2015W3C® (MIT,ERCIM,Keio,Beihang).W3Cliability,trademark anddocument use rules apply.
Tabular data is routinely transferred on the web in a variety of formats, including variants on CSV, tab-delimited files, fixed field formats, spreadsheets, HTML tables, and SQL dumps. This document outlines a data model, or infoset, for tabular data and metadata about that tabular data that can be used as a basis for validation, display, or creating other formats. It also contains some non-normative guidance for publishing tabular data as CSV and how that maps into the tabular data model.
An annotated model of tabular data can be supplemented by separate metadata about the table. This specification defines how implementations should locate that metadata, given a file containing tabular data. The standard syntax for that metadata is defined in [tabular-metadata]. Note, however, that applications may have other means to create annotated tables, e.g., through some application specific API-s; this model does not depend on the specificities described in [tabular-metadata].
This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of currentW3C publications and the latest revision of this technical report can be found in theW3C technical reports index at http://www.w3.org/TR/.
TheCSV on the Web Working Group waschartered to produce a recommendation "Access methods for CSV Metadata" as well as recommendations for "Metadata vocabulary for CSV data" and "Mapping mechanism to transforming CSV into various formats (e.g., RDF, JSON, or XML)". This document aims to primarily satisfy the "Access methods for CSV Metadata" recommendation (seesection5.Locating Metadata), though it also specifies an underlying model for tabular data and is therefore a basis for the other chartered Recommendations.
This definition of CSV used in this document is based on IETF's [RFC4180] which is an Informational RFC. The working group's expectation is that future suggestions to refine RFC 4180 will be relayed to the IETF (e.g. around encoding and line endings) and contribute to its discussions about moving CSV to the Standards track.
Many files containing tabular data embed metadata, for example in lines before the header row of an otherwise standard CSV document. This specification does not define any formats for embedding metadata within CSV files, aside from the titles of columns in the header row which is defined in CSV. We would encourage groups that define tabular data formats to also define a mapping into the annotated tabular data model defined in this document.
This document was published by theCSV on the Web Working Group as a Recommendation. If you wish to make comments regarding this document, please send them topublic-csv-wg@w3.org (subscribe,archives). All comments are welcome.
Please see the Working Group'simplementation report.
This document has been reviewed byW3C Members, by software developers, and by otherW3C groups and interested parties, and is endorsed by the Director as aW3C Recommendation. It is a stable document and may be used as reference material or cited from another document.W3C's role in making the Recommendation is to draw attention to the specification and to promote its widespread deployment. This enhances the functionality and interoperability of the Web.
This document was produced by a group operating under the5 February 2004W3C Patent Policy.W3C maintains apublic list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes containsEssential Claim(s) must disclose the information in accordance withsection 6 of theW3C Patent Policy.
This document is governed by the1 September 2015W3C Process Document.
Tabular data is data that is structured into rows, each of which contains information about some thing. Each row contains the same number of cells (although some of these cells may be empty), which provide values of properties of the thing described by the row. In tabular data, cells within the same column provide values for the same property of the things described by each row. This is what differentiates tabular data from other line-oriented formats.
Tabular data is routinely transferred on the web in a textual format called CSV, but the definition of CSV in practice is very loose. Some people use the term to mean any delimited text file. Others stick more closely to the most standard definition of CSV that there is, [RFC4180].Appendix A describes the various ways in which CSV is defined. This specification refers to such files, as well as tab-delimited files, fixed field formats, spreadsheets, HTML tables, and SQL dumps astabular data files.
Insection4.Tabular Data Models, this document defines a model for tabular data that abstracts away from the varying syntaxes that are used for when exchanging tabular data. The model includes annotations, or metadata, about collections of individual tables, rows, columns, and cells. These annotations are typically supplied through separate metadata files;section5.Locating Metadata defines how these metadata files can be located, while [tabular-metadata] defines what they contain.
Once anannotated table has been created, it can be processed in various ways, such as display, validation, or conversion into other formats. This processing is described insection6.Processing Tables.
This specification does not normatively define a format for exchanging tabular data. However, it does provide some best practice guidelines for publishing tabular data as CSV, in sectionsection7.Best Practice CSV, and for parsing both this syntax and those similar to it, insection8.Parsing Tabular Data.
As well as sections marked as non-normative, all authoring guidelines, diagrams, examples, and notes in this specification are non-normative. Everything else in this specification is normative.
The key wordsMAY,MUST,MUST NOT,SHOULD, andSHOULD NOT are to be interpreted as described in [RFC2119].
This specification makes use of thecompact IRI Syntax; please refer to theCompact IRIs from [JSON-LD].
This specification makes use of the following namespaces:
csvw
:http://www.w3.org/ns/csvw#
dc
:http://purl.org/dc/terms/
rdf
:http://www.w3.org/1999/02/22-rdf-syntax-ns#
rdfs
:http://www.w3.org/2000/01/rdf-schema#
schema
:http://schema.org/
xsd
:http://www.w3.org/2001/XMLSchema#
The following typographic conventions are used in this specification:
markup
markup definition reference
markup external definition reference
Notes are in light green boxes with a green left border and with a "Note" header in green. Notes are normative or informative depending on the whether they are in a normative or informative section, respectively.
Examples are in light khaki boxes, with khaki left border, and with a numbered "Example" header in khaki. Examples are always informative. The content of the example is in monospace font and may be syntax colored.
This section defines anannotated tabular data model: a model for tables that are annotated with metadata.Annotations provide information about the cells, rows, columns, tables, and groups of tables with which they are associated. Thevalues of these annotations may be lists, structured objects, or atomic values.Core annotations are those that affect the behavior of processors defined in this specification, but other annotations may also be present on any of the components of the model.
Annotations may be described directly in [tabular-metadata], be embedded in atabular data file, or created during the process of generating anannotated table.
String values within the tabular data model (such as column titles or cell string values)MUST contain only Unicode characters.
In this document, the termannotation refers to any metadata associated with an object in the annotated tabular data model. These are not necessarily web annotations in the sense of [annotation-model].
Agroup of tables comprises a set ofannotated tables and a set of annotations that relate to that group of tables. Thecore annotations of a group of tables are:
null
if this is undefined.Groups of tablesMAY in addition have any number ofannotations which provide information about the group of tables. Annotations on a group of tables may include:
When originating from [tabular-metadata], these annotations arise fromcommon properties defined ontable group descriptions within metadata documents.
Anannotated table is atable that is annotated with additional metadata. Thecore annotations of a table are:
textDirection
property is set toinherit
(the default).null
if this is undefined.null
.null
if this is undefined.The tableMAY in addition have any number of otherannotations. Annotations on a table may include:
When originating from [tabular-metadata], these annotations arise fromcommon properties defined ontable descriptions within metadata documents.
Acolumn represents a vertical arrangement ofcells within atable. Thecore annotations of a column are:
null
.null
.textDirection
property is set toinherit
(the default).false
, the column is areal column, which exists in the source data for the table.Several of these annotations arise frominherited properties that may be defined within metadata ontable group,table or individualcolumn descriptions.
ColumnsMAY in addition have any number of otherannotations, such as a description. When originating from [tabular-metadata], these annotations arise fromcommon properties defined oncolumn descriptions within metadata documents.
Arow represents a horizontal arrangement ofcells within atable. Thecore annotations of a row are:
null
.RowsMAY have any number of additionalannotations. The annotations on a row provide additional metadata about the information held in the row, such as:
Neither this specification nor [tabular-metadata] defines a method to specify such annotations. ImplementationsMAY define a method for adding annotations to rows by interpretingnotes on the table.
Acell represents a cell at the intersection of arow and acolumn within atable. Thecore annotations of a cell are:
null
.null
.textDirection
property is set toinherit
(the default).null
. For example, annotations might enable a processor to understand thestring value of the cell as representing a number or a date. By default, if thestring value is an empty string, the semantic value of the cell isnull
.null
. There presence or absence of quotes around a value within a CSV file is a syntactic detail that is not reflected in the tabular data model. In other words, there is no distinction in the model between the second value ina,,z
and the second value ina,"",z
.
Several of these annotations arise from or are constructed based oninherited properties that may be defined within metadata ontable group,table orcolumn descriptions.
CellsMAY have any number of additionalannotations. The annotations on a cell provide metadata about the value held in the cell, particularly when this overrides the information provided for thecolumn androw that the cell falls within. Annotations on a cell might be:
Neither this specification nor [tabular-metadata] defines a method to specify such annotations. ImplementationsMAY define a method for adding annotations to cells by interpretingnotes on the table.
Units of measure are not a built-in part of the tabular data model. However, they can be captured throughnotes or included in the converted output of tabular data through definingdatatypes with identifiers that indicate the unit of measure, usingvirtual columns to create nested data structures, or using common properties to specify Data Cube attributes as defined in [vocab-data-cube].
Columns andcell values within tables may be annotated with adatatype which indicates the type of the values obtained by parsing thestring value of the cell.
Datatypes are based on a subset of those defined in [xmlschema11-2]. Theannotated tabular data model limitscell values to have datatypes as shown onthe diagram:
xsd:anyAtomicType
.rdf:XMLLiteral
, a sub-type ofxsd:string
, which indicates the value is an XML fragment.rdf:HTML
, a sub-type ofxsd:string
, which indicates the value is an HTML fragment.csvw:JSON
, a sub-type ofxsd:string
, which indicates the value is serialized JSON.Thecore annotations of a datatype are:
null
if undefined;convertersSHOULD use this URL when serializing values of this datatype. ProcessorsMAY use this annotation to perform additional validation on column values using this datatype.null
if the datatype isxsd:anyAtomicType
. Allvalues of the datatypeMUST be valid values of the base datatype. If theid of a datatype is that of a built-in datatype, the values of the other core annotations listed aboveMUST be consistent with the values defined in [xmlschema11-2] or above. For example, if theid isxsd:integer
then thebase must bexsd:decimal
.
DatatypesMAY have any number of additionalannotations. The annotations on a datatype provide metadata about the datatype such as title or description. These arise fromcommon properties defined on datatype descriptions within metadata documents, as defined in [tabular-metadata].
Theid annotation may reference an XSD, OWL or other datatype definition, which is not used by this specification for validating column values, but may be useful for further processing.
Thelength,minimum length andmaximum length annotations indicate the exact, minimum and maximum lengths forcell values.
The length of avalue is determined as defined in [xmlschema11-2], namely as follows:
null
, its length is zero.If thevalue is alist, the constraint applies to each element of the list.
Theminimum,maximum,minimum exclusive, andmaximum exclusive annotations indicate limits oncell values. These apply to numeric, date/time, and duration types.
Validation ofcell values against these datatypes is as defined in [xmlschema11-2]. If thevalue is alist, the constraint applies to each element of the list.
As described insection4.Tabular Data Models, tabular data may have a number of annotations associated with it. Here we describe the different methods that can be used to locate metadata that provides those annotations.
In the methods of locating metadata described here, metadata is provided within a single document. The syntax of such documents is defined in [tabular-metadata]. Metadata is located using a specific order of precedence:
Link
header associated with thetabular data file, seesection5.2Link Header. ProcessorsMUST use the first metadata found for processing atabular data file by using overriding metadata, if provided. Otherwise processorsMUST attempt to locate the first metadata document from theLink
header or the metadata located through site-wide configuration. If no metadata is supplied or found, processorsMUST useembedded metadata. If the metadata does not originate from the embedded metadata,validatorsMUST verify that thetable group description within that metadata iscompatible with that in theembedded metadata, as defined in [tabular-metadata].
When feasible, processors should start from a metadata file and publishers should link to metadata files directly, rather than depend on mechanisms outlined in this section for locating metadata from a tabular data file. Otherwise, if possible, publishers should provide aLink
header on the tabular data file as described insection5.2Link Header.
If there is no site-wide location configuration,section5.3Default Locations and Site-wide Location Configuration specifies default URI patterns or paths to be used to locate metadata.
ProcessorsSHOULD provide users with the facility to provide their own metadata fortabular data files that they process. This might be provided:
For example, a processor might be invoked with:
$ csvlint data.csv --datatypes:string,float,string,string
to enable the testing of the types of values in the columns of a CSV file, or with:
$ csvlint data.csv --schema:schema.json
to supply a schema that describes the contents of the file, against which it can be validated.
Metadata supplied in this way is called overriding, or user-supplied, metadata. ImplementationsSHOULD define how any options they define are mapped into the vocabulary defined in [tabular-metadata]. If the user selects existing metadata files, implementationsMUST NOT use metadata located through the Link header (as described insection5.2Link Header) or site-wide location configuration (as described insection5.3Default Locations and Site-wide Location Configuration).
Users should ensure that any metadata from those locations that they wish to use is explicitly incorporated into the overriding metadata that they use to process tabular data. Processors may provide facilities to make this easier by automatically merging metadata files from different locations, but this specification does not define how such merging is carried out.
If the user has not supplied a metadata file as overriding metadata, described insection5.1Overriding Metadata, then when retrieving atabular data file via HTTP, processorsMUST retrieve the metadata file referenced by anyLink
header with:
rel="describedby"
, andtype="application/csvm+json"
,type="application/ld+json"
ortype="application/json"
. so long as this referenced metadata file describes the retrievedtabular data file (ie, contains atable description whoseurl
matches the request URL).
If there is more than one valid metadata file linked to through multipleLink
headers, then implementationsMUST use the metadata file referenced by the lastLink
header.
For example, when the response to requesting a tab-separated file looks like:
HTTP/1.1200 OKContent-Type: text/tab-separated-values...Link:<metadata.json>; rel="describedBy"; type="application/csvm+json"
an implementation must use the referencedmetadata.json
to supply metadata for processing the file.
If the metadata file found at this location does not explicitly include a reference to the requestedtabular data file then itMUST be ignored. URLsMUST be normalized as described insection6.3URL Normalization.
TheLink
header of themetadata fileMAY include references to the CSV files it describes, using thedescribes
relationship. For example, in thecountries' metadata example, the server might return the following headers:
Link: <http://example.org/countries.csv>; rel="describes"; type="text/csv"Link: <http://example.org/country_slice.csv>; rel="describes"; type="text/csv"
However, locating the metadataSHOULD NOT depend on this mechanism.
If the user has not supplied a metadata file as overriding metadata, described insection5.1Overriding Metadata, and no applicable metadata file has been discovered through aLink
header, described insection5.2Link Header, processorsMUST attempt to locate a metadata documents through site-wide configuration.
In this case, processorsMUST retrieve the file from the well-known URI/.well-known/csvm
. (Well-known URIs are defined by [RFC5785].) If no such file is located (i.e. the response results in a client error4xx
status code or a server error5xx
status code), processorsMUST proceed as if this file were found with the following content which defines default locations:
{+url}-metadata.jsoncsv-metadata.json
The response to retrieving/.well-known/csvm
MAY be cached, subject to cache control directives. This includes caching an unsuccessful response such as a404 Not Found
.
This fileMUST contain a URI template, as defined by [URI-TEMPLATE], on each line. Starting with the first such URI template, processorsMUST:
url
being set to the URL of the requestedtabular data file (with any fragment component of that URL removed). For example, if thetabular data file is athttp://example.org/south-west/devon.csv
then processors must attempt to locate a well-known file athttp://example.org/.well-known/csvm
. If that file contains:
{+url}.jsoncsvm.json/csvm?file={url}
the processor will first look forhttp://example.org/south-west/devon.csv.json
. If there is no metadata file in that location, it will then look forhttp://example.org/south-west/csvm.json
. Finally, if that also fails, it will look forhttp://example.org/csvm?file=http://example.org/south-west/devon.csv.json
.
If no file were found athttp://example.org/.well-known/csvm
, the processor will use the default locations and try to retrieve metadata fromhttp://example.org/south-west/devon.csv-metadata.json
and, if unsuccessful,http://example.org/south-west/csv-metadata.json
.
Most syntaxes for tabular data provide a facility forembedding metadata within thetabular data file itself. The definition of a syntax for tabular dataSHOULD include a description of how the syntax maps to an annotated data model, and in particular how any embedded metadata is mapped into the vocabulary defined in [tabular-metadata]. Parsing based on the default dialect for CSV, as described in8.Parsing Tabular Data, will extractcolumn titles from the first row of a CSV file.
GID,On Street,Species,Trim Cycle,Inventory Date1,ADDISON AV,Celtis australis,Large Tree Routine Prune,10/18/20102,EMERSON ST,Liquidambar styraciflua,Large Tree Routine Prune,6/2/2010
The results of this can be found insection8.2.1Simple Example.
For another example, the following tab-delimited file contains embedded metadata where it is assumed that comments may be added using a#
, and that the column types may be indicated using a#datatype
annotation:
# publisher City of Palo Alto# updated 12/31/2010#name GID on_street species trim_cycle inventory_date#datatype string string string string date:M/D/YYYY GID On Street Species Trim Cycle Inventory Date 1 ADDISON AV Celtis australis Large Tree Routine Prune 10/18/2010 2 EMERSON ST Liquidambar styraciflua Large Tree Routine Prune 6/2/2010
A processor that recognises this format may be able to extract and make sense of this embedded metadata.
This section describes how particular types of applications should process tabular data and metadata files.
In many cases, an application will start processing from a metadata file. In that case, the initial metadata file is treated asoverriding metadata and the applicationMUST NOT continue to retrieve other available metadata about each of thetabular data files referenced by that initial metadata file other thanembedded metadata.
In other cases, applications will start from atabular data file, such as a CSV file, andlocate metadata from that file. This metadata will be used to process the file as if the processor were starting from that metadata file.
For example, if a validator is passed a locally authored metadata filespending.json
, which contains:
{"tableSchema":"government-spending.csv","tables":[{"url":"http://example.org/east-sussex-2015-03.csv",},{"url":"http://example.org/east-sussex-2015-02.csv"},...]}
the validator would validate all the listed tables, using the locally defined schema atgovernment-spending.csv
. It would also use the metadata embedded in the referenced CSV files; for example, when processinghttp://example.org/east-sussex-2015-03.csv
, it would useembedded metadata within that file to verify that the CSV iscompatible with the metadata.
If a validator is passed atabular data filehttp://example.org/east-sussex-2015-03.csv
, the validator would use the metadata located from the CSV file: the first metadata file found through theLink
headers found when retrieving that file, or located through a site-wide location configuration.
Starting with a metadata file can remove the need to perform additional requests to locate linked metadata, or metadata retrieved through site-wide location configuration
After locating metadata, metadata isnormalized and coerced into a singletable group description. When starting with a metadata file, this involves normalizing the provided metadata file and verifying that theembedded metadata for eachtabular data file referenced from the metadata iscompatible with the metadata. When starting with atabular data file, this involves locating the first metadata file as described insection5.Locating Metadata and normalizing into a single descriptor.
If processing starts with atabular data file, implementations:
FM
) as described insection5.Locating Metadata:tables
entry where theurl
property is set from that of thetabular data file.FM
.If the process starts with a metadata file:
UM
(which is treated as overriding metadata, seesection5.1Overriding Metadata).UM
using the process defined inNormalization in [tabular-metadata], coercingUM
into atable group description, if necessary.TM
) inUM
in order, create one or moreannotated tables:DD
) fromUM
for thetable associated with the tabular data file. If there is no such dialect description, extract the first available dialect description from agroup of tables in which the tabular data file is described. Otherwise use the default dialect description.DD
based on HTTP headers found when retrieving the tabular data file:Parse the tabular data file, usingDD
as a guide, to create a basic tabular data model (T
) and extractembedded metadata (EM
), for example from theheader line.
This specification provides a non-normative definition for parsing CSV-based files, including the extraction ofembedded metadata, insection8.Parsing Tabular Data. This specification does not define any syntax for embedded metadata beyond this; whatever syntax is used, it's assumed that metadata can be mapped to the vocabulary defined in [tabular-metadata].
Content-Language
HTTP header was found when retrieving the tabular data file, and the value provides a single language, set thelang inherited property to this value inTM
, unlessTM
already has alang inherited property.TM
is compatible withEM
using the procedure defined inTable Description Compatibility in [tabular-metadata]; ifTM
is not compatible withEM
validatorsMUST raise an error, other processorsMUST generate a warning and continue processing.TM
to add annotations to the tabular data modelT
as described inSection 2 Annotating Tables in [tabular-metadata].When processing atabular data file using metadata as discovered usingsection5.Locating Metadata, processorsMUST ensure that the metadata andtabular data file are compatible, this is typically done by extractingembedded metadata from thetabular data file and determining that the provided or discovered metadata is compatible with theembedded metadata using the procedure defined inTable Compatibility in [tabular-metadata].
Metadata Discovery and Compatibility involve comparing URLs. When comparing URLs, processorsMUST useSyntax-Based Normalization as defined in [RFC3968]. ProcessorsMUST performScheme-Based Normalization for HTTP (80
) and HTTPS (443
) andSHOULD performScheme-Based Normalization for other well-known schemes.
Unlike many other data formats, tabular data is designed to be read by humans. For that reason, it's common for data to be represented within tabular data in a human-readable way. Thedatatype,default,lang,null,required, andseparator annotations provide the information needed to parse thestring value of a cell into its (semantic)value annotation. This is used:
The process of parsing a cell creates acell with annotations based on the original string value, parsed value and othercolumn annotations and adds the cell to the list ofcells in arow andcells in acolumn:
After parsing, thecell value can be:
null
,The process of parsing the string value into a single value or a list of values is as follows:
string
,json
,xml
,html
oranyAtomicType
, replace all carriage return (#xD
), line feed (#xA
), and tab (#x9
) characters with space characters.string
,json
,xml
,html
,anyAtomicType
, ornormalizedString
, strip leading and trailing whitespace from thestring value and replace all instances of two or more whitespace characters with a single space character.null
and the normalized string is an empty string, thecell value is an empty list. If thecolumn required annotation istrue
, add an error to the list oferrors for the cell.null
, thecell value is a list of values; set thelist annotation on thecell totrue
, and create thecell value created by:null
.string
oranyAtomicType
, strip leading and trailing whitespace from these strings.null
. If thecolumn separator annotation isnull
and thecolumn required annotation istrue
, add an error to the list oferrors for the cell.string
, or there is nodatatype
, the value has an associatedlanguage from thecolumn lang annotation. If there are any errors, add them to the list oferrors for the cell; in this case the value has adatatype ofstring
; if thedatatype base isstring
, or there is nodatatype
, the value has an associatedlanguage from thecolumn lang annotation.The final value (or values) become thevalue annotation on thecell.
If there is aabout URL annotation on thecolumn, it becomes theabout URL annotation on thecell, after being transformed into an absolute URL as described inURI Template Properties of [tabular-metadata].
If there is aproperty URL annotation on thecolumn, it becomes theproperty URL annotation on thecell, after being transformed into an absolute URL as described inURI Template Properties of [tabular-metadata].
If there is avalue URL annotation on thecolumn, it becomes thevalue URL annotation on thecell, after being transformed into an absolute URL as described inURI Template Properties of [tabular-metadata]. Thevalue URL annotation isnull
if thecell value isnull
and thecolumn virtual annotation isfalse
.
This section is non-normative.
Whendatatype annotation is available, thevalue of a cell is the same as itsstring value. For example, a cell with a string value of"99"
would similarly have the (semantic) value"99"
.
If adatatype base is provided for the cell, that is used to create a (semantic)value for the cell. For example, if the metadata contains:
"datatype":"integer"
for the cell with the string value"99"
then the value of that cell will be the integer99
. A cell whose string value was not a valid integer (such as"one"
or"1.0"
) would be assigned that string value as its (semantic) value annotation, but also have a validation error listed in itserrors annotation.
Sometimes data uses special codes to indicate unknown or null values. For example, a particular column might contain a number that is expected to be between1
and10
, with the string99
used in the original tabular data file to indicate a null value. The metadata for such a column would include:
"datatype":{"base":"integer","minimum":1,"maximum":10},"null":"99"
In this case, a cell with a string value of"5"
would have the (semantic) value of the integer5
; a cell with a string value of"99"
would have the valuenull
.
Similarly, a cell may be assigned a default value if the string value for the cell is empty. A configuration such as:
"datatype":{"base":"integer","minimum":1,"maximum":10},"default":"5"
In this case, a cell whose string value is""
would be assigned the value of the integer5
. A cell whose string value contains whitespace, such as a single tab character, would also be assigned the value of the integer5
: when the datatype is something other thanstring
oranyAtomicType
, leading and trailing whitespace is stripped from string values before the remainder of the processing is carried out.
Cells can contain sequences of values. For example, a cell might have the string value"1 5 7.0"
. In this case, the separator is a space character. The appropriate configuration would be:
"datatype":{"base":"integer","minimum":1,"maximum":10},"default":"5","separator":" "
and this would mean that the cell's value would be an array containing two integers and a string:[1, 5, "7.0"]
. The final value of the array is a string because it is not a valid integer; the cell'serrors annotation will also contain a validation error.
Also, with this configuration, if the string value of the cell were""
(i.e. it was an empty cell) the value of the cell would be an empty list.
Acell value can be inserted into a URL created using aURI template property such asvalueUrl
. For example, if a cell with thestring value"1 5 7.0"
were in a column namedvalues
, defined with:
"datatype":"decimal","separator":" ","valueUrl":"{?values}"
then after expansion of the URI template, the resultingvalueUrl
would be?values=1.0,5.0,7.0
. The canonical representations of the decimal values are used within the URL.
By default, numeric values must be in the formats defined in [xmlschema11-2]. It is not uncommon for numbers within tabular data to be formatted for human consumption, which may involve using commas for decimal points, grouping digits in the number using commas, or adding percent signs to the number.
If thedatatype base is a numeric type, thedatatype format annotation indicates the expected format for that number. Its valueMUST be either a single string or an object with one or more of the properties:
"."
. If the supplied value is not a string, implementationsMUST issue a warning and proceed as if the property had not been specified.null
. If the supplied value is not a string, implementationsMUST issue a warning and proceed as if the property had not been specified.0
,#
, the specifieddecimalChar (or"."
if unspecified), the specifiedgroupChar (or","
if unspecified),E
,+
,%
and‰
. ImplementationsMAY additionally recognise number format patterns containing otherspecial pattern characters defined in [UAX35]. If the supplied value is not a string, or if it contains an invalidnumber format pattern or usesspecial pattern characters that the implementation does not recognise, implementationsMUST issue a warning and proceed as if the property had not been specified.If thedatatype format annotation is a single string, this is interpreted in the same way as if it were an object with apattern property whose value is that string.
If thegroupChar is specified, but nopattern is supplied, when parsing thestring value of a cell against this format specification, implementationsMUST recognise and parse numbers that consist of:
+
or-
sign,0-9
),0-9
) and the string specified as thegroupChar,0-9
),E
followed by an optional+
or-
sign followed by one or more decimal digits (0-9
), or%
) or per-mille (‰
) sign.or that are one of the special values:
NaN
,INF
, or-INF
.ImplementationsMAY also recognise numeric values that are in any of the standard-decimal, standard-percent or standard-scientific formats listed in theUnicode Common Locale Data Repository.
ImplementationsMUST add a validation error to theerrors annotation for thecell, and set the cellvalue to a string rather than a number if the string being parsed:
integer
or one of its sub-types,decimal
or one of its sub-types, orNaN
,INF
, or-INF
, if thedatatype base isdecimal
or one of its sub-types. ImplementationsMUST use the sign, exponent, percent, and per-mille signs when parsing thestring value of a cell to provide thevalue of the cell. For example, the string value"-25%"
must be interpreted as-0.25
and the string value"1E6"
as1000000
.
Boolean values may be represented in many ways aside from the standard1
and0
ortrue
andfalse
.
If thedatatype base for a cell isboolean
, thedatatype format annotation provides the true value followed by the false value, separated by|
. For example ifformat
isY|N
then cells must hold eitherY
orN
withY
meaningtrue
andN
meaningfalse
. If the format does not follow this syntax, implementationsMUST issue a warning and proceed as if no format had been provided.
The resultingcell value will be one or more booleantrue
orfalse
values.
By default, dates and times are assumed to be in the format defined in [xmlschema11-2]. However dates and times are commonly represented in tabular data in other formats.
If thedatatype base is a date or time type, thedatatype format annotation indicates the expected format for that date or time.
The supported date and time format patterns listed here are expressed in terms of thedate field symbols defined in [UAX35]. These formatsMUST be recognised by implementations andMUST be interpreted as defined in that specification. ImplementationsMAY additionally recognise otherdate format patterns. ImplementationsMUST issue a warning if the date format pattern is invalid or not recognised and proceed as if no date format pattern had been provided.
For interoperability, authors of metadata documentsSHOULD use only the formats listed in this section.
The following date format patternsMUST be recognized by implementations:
yyyy-MM-dd
e.g.,2015-03-22
yyyyMMdd
e.g.,20150322
dd-MM-yyyy
e.g.,22-03-2015
d-M-yyyy
e.g.,22-3-2015
MM-dd-yyyy
e.g.,03-22-2015
M-d-yyyy
e.g.,3-22-2015
dd/MM/yyyy
e.g.,22/03/2015
d/M/yyyy
e.g.,22/3/2015
MM/dd/yyyy
e.g.,03/22/2015
M/d/yyyy
e.g.,3/22/2015
dd.MM.yyyy
e.g.,22.03.2015
d.M.yyyy
e.g.,22.3.2015
MM.dd.yyyy
e.g.,03.22.2015
M.d.yyyy
e.g.,3.22.2015
The following time format patternsMUST be recognized by implementations:
HH:mm:ss.S
with one or more trailingS
characters indicating the maximum number of fractional seconds e.g.,HH:mm:ss.SSS
for15:02:37.143
HH:mm:ss
e.g.,15:02:37
HHmmss
e.g.,150237
HH:mm
e.g.,15:02
HHmm
e.g.,1502
The following date/time format patternsMUST be recognized by implementations:
yyyy-MM-ddTHH:mm:ss.S
with one or more trailingS
characters indicating the maximum number of fractional seconds e.g.,yyyy-MM-ddTHH:mm:ss.SSS
for2015-03-15T15:02:37.143
yyyy-MM-ddTHH:mm:ss
e.g.,2015-03-15T15:02:37
yyyy-MM-ddTHH:mm
e.g.,2015-03-15T15:02
M/d/yyyy HH:mm
for3/22/2015 15:02
ordd.MM.yyyy HH:mm:ss
for22.03.2015 15:02:37
ImplementationsMUST also recognise date, time, and date/time format patterns that end with timezone markers consisting of between one and threex
orX
characters, possibly after a single space. TheseMUST be interpreted as follows:
X
e.g.,-08
,+0530
, orZ
(minutes are optional)XX
e.g.,-0800
,+0530
, orZ
XXX
e.g.,-08:00
,+05:30
, orZ
x
e.g.,-08
or+0530
(Z
is not permitted)xx
e.g.,-0800
or+0530
(Z
is not permitted)xxx
e.g.,-08:00
or+05:30
(Z
is not permitted) For example, date format patterns could includeyyyy-MM-ddTHH:mm:ssXXX
for2015-03-15T15:02:37Z
or2015-03-15T15:02:37-05:00
, orHH:mm x
for15:02 -05
.
Thecell value will one or more dates/time values extracted using theformat
.
For simplicity, this version of this standard does not support abbreviated or full month or day names, or double digit years. Future versions of this standard may support other date and time formats, or general purpose date/time pattern strings. Authors of schemasSHOULD use appropriate regular expressions, along with thestring
datatype, for dates and times that use a format other than that specified here.
DurationsMUST be formatted and interpreted as defined in [xmlschema11-2], using the [ISO8601] format-?PnYnMnDTnHnMnS
. For example, the durationP1Y1D
is used for a year and a day; the durationPT2H30M
for 2 hours and 30 minutes.
If thedatatype base is a duration type, thedatatype format annotation provides a regular expression for the string values, with syntax and processing defined by [ECMASCRIPT]. If the supplied value is not a valid regular expression, implementationsMUST issue a warning and proceed as if no format had been provided.
Authors are encouraged to be conservative in the regular expressions that they use, sticking to the basic features of regular expressions that are likely to be supported across implementations.
Thecell value will be one or more durations extracted using theformat
.
If thedatatype base is not numeric,boolean
, a date/time type, or a duration type, thedatatype format annotation provides a regular expression for the string values, with syntax and processing defined by [ECMASCRIPT]. If the supplied value is not a valid regular expression, implementationsMUST issue a warning and proceed as if no format had been provided.
Authors are encouraged to be conservative in the regular expressions that they use, sticking to the basic features of regular expressions that are likely to be supported across implementations.
Values that are labelled ashtml
,xml
, orjson
SHOULD NOT be validated against those formats.
Metadata creators who wish to check the syntax of HTML, XML, or JSON within tabular data should use thedatatype format annotation to specify a regular expression against which such values will be tested.
This section is non-normative.
When presenting tables, implementations should:
There are two levels of bidirectionality to consider when displaying tables: the directionality of the table (i.e., whether the columns should be arranged left-to-right or right-to-left) and the directionality of the content of individual cells.
Thetable direction annotation on the table provides information about the desired display of the columns in the table. Iftable direction isltr
then the first column should be displayed on the left and the last column on the right. Iftable direction isrtl
then the first column should be displayed on the right and the last column on the left.
Iftable direction isauto
then tables should be displayed with attention to the bidirectionality of the content of the cells in the table. Specifically, the values of the cells in the table should be scanned breadth first: from the first cell in the first column through to the last cell in the first row, down to the last cell in the last column. If the first character in the table with astrong type as defined in [BIDI] indicates aRTL directionality, the table should be displayed with the first column on the right and the last column on the left. Otherwise, the table should be displayed with the first column on the left and the last column on the right. Characters such as whitespace, quotes, commas, and numbers do not have a strong type, and therefore are skipped when identifying the character that determines the directionality of the table.
Implementations should enable user preferences to override the indicated metadata about the directionality of the table.
Once the directionality of the table has been determined, each cell within the table should be considered as a separateparagraph, as defined by the Unicode Bidirectional Algorithm (UBA) in [BIDI]. The directionality for the cell is determined by looking at thetext direction annotation for the cell, as follows:
ltr
then the base direction for the cell content should be set to left-to-right.rtl
then the base direction for the cell content should be set to right-to-left.auto
then the base direction for the cell content should be set to the direction determined by the first character in the cell with astrong type as defined in [BIDI]. If thetextDirection property in metadata has the value"inherit"
, thetext direction annotation for a cell inherits its value from thetable direction annotation on the table.
When thetitles of a column are displayed, these should be displayed in the direction determined by the first character in the title with astrong type as defined in [BIDI]. Titles for the same column in different languages may be displayed in different directions.
The labelling of columns and rows helps those who are attempting to understand the content of a table to grasp what a particular cell means. Implementations should present appropriate titles for columns, and ensure that the most important information in a row is kept apparent to the user, to aid their understanding. For example:
When labelling a column, either on the screen or aurally, implementations should use the first available of:
When labelling a row, either on the screen or aurally, implementations should use the first available of:
Validators test whether giventabular data files adhere to the structure defined within aschema. ValidatorsMUST raise errors (and halt processing) and issue warnings (and continue processing) as defined in [tabular-metadata]. In addition, validatorsMUST raise errors butMAY continue validating in the following situations:
Conversions of tabular data to other formats operate over aannotated table constructed as defined inAnnotating Tables in [tabular-metadata]. The mechanics of these conversions to other formats are defined in other specifications such as [csv2json] and [csv2rdf].
Conversion specificationsMUST define a default mapping from an annotated table that lacks any annotations (i.e., that is equivalent to an un-annotated table).
Conversion specificationsMUST use theproperty value of thepropertyUrl
of a column as the basis for naming machine-readable fields in the target format, such as the name of the equivalent element or attribute in XML, property in JSON or property URI in RDF.
Conversion specificationsMAY use any of theannotations found on an annotated table group, table, column, row or cell, including non-core annotations, to adjust the mapping into another format.
Conversion specificationsMAY define additional annotations, not defined in this specification, which are specifically used when converting to the target format of the conversion. For example, a conversion to XML might specify ahttp://example.org/conversion/xml/element-or-attribute
property on columns that determines whether a particular column is represented through an element or an attribute in the data.
This section is non-normative.
There is no standard for CSV, and there are many variants of CSV used on the web today. This section defines a method for expressing tabular data adhering to theannotated tabular data model in CSV. Authors are encouraged to adhere to the constraints described in this section as implementations should process such CSV files consistently.
This syntax is not compliant withtext/csv
as defined in [RFC4180] in that it permits line endings other thanCRLF
. SupportingLF
line endings is important for data formats that are used on non-Windows platforms. However, all files that adhere to [RFC4180]'s definition of CSV meet the constraints described in this section.
Developing a standard for CSV is outside the scope of the Working Group. The details here aim to help shape any future standard.
The appropriate content type for a CSV file istext/csv
. For example, when a CSV file is transmitted via HTTP, the HTTP response should include aContent-Type
header with the valuetext/csv
:
Content-Type: text/csv
CSV files should be encoded using UTF-8, and should be in Unicode Normal Form C as defined in [UAX15]. If a CSV file is not encoded using UTF-8, the encoding should be specified through thecharset
parameter in theContent-Type
header:
Content-Type: text/csv;charset=ISO-8859-1
The ends of rows in a CSV file should beCRLF
(U+000D U+000A
) but may beLF
(U+000A
). Line endings within escapedcells are not normalised.
Each line of a CSV file should contain the same number of comma-separated values.
Values that contain commas, line endings, or double quotes should be escaped by having the entire value wrapped in double quotes. There should not be whitespace before or after the double quotes. Within these escaped cells, any double quotes should be escaped with two double quotes (""
).
The first line of a CSV file should contain a comma-separated list of names ofcolumns. This is known as theheader line and provides titles for the columns. There are no constraints on these titles.
If a CSV file does not include a header line, this should be specified using theheader
parameter of the media type:
Content-Type: text/csv;header=absent
This grammar is a generalization of that defined in [RFC4180] and is included for reference only.
This section is non-normative.
As described insection7.Best Practice CSV, there may be many formats which an application might interpret into the tabular data model described insection4.Tabular Data Models, including using different separators or fixed format tables, multiple tables within a single file, or ones that have metadata lines before a table header.
Standardizing the parsing of CSV is outside the chartered scope of the Working Group. This non-normative section is intended to help the creators of parsers handle the wide variety of CSV-based formats that they may encounter due to the current lack of standardization of the format.
This section describes an algorithm for parsing formats that do not adhere to the constraints described insection7.Best Practice CSV, as well as those that do, and extractingembedded metadata. The parsing algorithm uses the following flags. These may be set by metadata properties found whileLocating Metadata, including through user input (seeOverriding Metadata), or through the inclusion of adialect description within a metadata file:
rdfs:comment
annotation to the table. This is set by thecommentPrefix
property of adialect description. The default isnull
, which means no rows are treated as comments. A value other thannull
may mean that thesource numbers ofrows are different from theirnumbers.delimiter
property of adialect description. The default is,
.encoding
property of adialect description. The default isutf-8
.null
, set by thedoubleQuote
property of adialect description. The default is"
(such that""
is used to escape"
within an escaped cell).header
orheaderRowCount
property of adialect description. The default is1
. A value other than0
will mean that thesource numbers ofrows will be different from theirnumbers.lineTerminators
property of adialect description. The default is[CRLF, LF]
.null
, set by thequoteChar
property of adialect description. The default is"
.skipBlankRows
property of adialect description. The default isfalse
. A value other thanfalse
may mean that thesource numbers ofrows are different from theirnumbers.skipColumns
property of adialect description. The default is0
. A value other than0
will mean that thesource numbers ofcolumns will be different from theirnumbers.skipRows
property of adialect description. The default is0
. A value greater than0
will mean that thesource numbers ofrows will be different from theirnumbers.true
,false
,start
, orend
, set by theskipInitialSpace
ortrim
property of adialect description. The default istrue
.The algorithm for using these flags to parse a document containing tabular data to create a basicannotated tabular data model and to extractembedded metadata is as follows:
null
null
auto
false
false
{"@context":"http://www.w3.org/ns/csvw","rdfs:comment":[]"tableSchema":{"columns":[]}}
url
property onM to that URL.1
.Read the file using theencoding, as specified in [encoding], using thereplacementerror mode. If the encoding is not a Unicode encoding, use a normalizing transcoder to normalize into Unicode Normal Form C as defined in [UAX15].
Thereplacementerror mode ensures that any non-Unicode characters within the CSV file are replaced by U+FFFD, ensuring that strings within the tabular data model such as column titles and cell string values only contain valid Unicode characters.
null
and therow content begins with thecomment prefix, strip that prefix from therow content, and add the resulting string to theM.rdfs:comment
array.M.rdfs:comment
array.1
to thesource row number.null
and therow content begins with thecomment prefix, strip that prefix from therow content, and add the resulting string to theM.rdfs:comment
array.M.tableSchema.columns
, create a new one with atitle
property whose value is an array containing a single value that is the value at indexi in thelist of cell values.M.tableSchema.columns[i].title
.1
to thesource row number.M.tableSchema.columns
for each column in the current row afterskip columns.1
.1
.null
and therow content begins with thecomment prefix, strip that prefix from therow content, and add the resulting string to theM.rdfs:comment
array.true
, add1
to thesource row number and move on to process the next row.1
):null
false
false
string
und
false
false
null
auto
null
null
null
auto
false
null
null
null
1
to thesource column number.1
to thesource row number.M.rdfs:comment
is an empty array, remove therdfs:comment
property fromM.Toread a row to providerow content, perform the following steps:
Toread a quoted value to provide aquoted value, perform the following steps:
Toparse a row to provide alist of cell values, perform the following steps:
false
.false
, set thequoted flag totrue
, and move on to process the remaining string. If thecurrent cell value is not an empty string, raise an error.false
, and move on to process the remaining string. If the remaining string does not start with thedelimiter, raise an error.true
, append thedelimiter string to thecurrent cell value and move on to process the remaining string.Toconditionally trim a cell value to provide atrimmed cell value, perform the following steps:
true
orstart
then remove any leading whitespace from the start of thetrimmed cell value and move on to the next step.true
orend
then remove any trailing whitespace from the end of thetrimmed cell value and move on to the next step.This parsing algorithm does not account for the possibility of there being more than one area of tabular data within a single CSV file.
This section is non-normative.
Bidirectional content does not alter the definition of rows or the assignment of cells to columns. Whether or not a CSV file contains right-to-left characters, the first column's content is the first cell of each row, which is the text prior to the first occurrence of a comma within that row.
For example,Egyptian Referendum results are available as a CSV file athttps://egelections-2011.appspot.com/Referendum2012/results/csv/EG.csv. Over the wire and in non-Unicode-aware text editors, the CSV looks like:
المحافظة,نسبة موافق,نسبة غير موافق,عدد الناخبين,الأصوات الصحيحة,الأصوات الباطلة,نسبة المشاركة,موافق,غير موافقالقليوبية,60.0,40.0,"2,639,808","853,125","15,224",32.9,"512,055","341,070"الجيزة,66.7,33.3,"4,383,701","1,493,092","24,105",34.6,"995,417","497,675"القاهرة,43.2,56.8,"6,580,478","2,254,698","36,342",34.8,"974,371","1,280,327"قنا,84.5,15.5,"1,629,713","364,509","6,743",22.8,"307,839","56,670"...
Within this CSV file, the first column appears as the content of each line before the first comma and is namedالمحافظة
(appearing at the start of each row asالمحافظة
in the example, which is displaying the relevant characters from left to right in the order they appear "on the wire").
The CSV translates to a table model that looks like:
Column / Row | column 1 | column 2 | column 3 | column 4 | column 5 | column 6 | column 7 | column 8 | column 9 |
---|---|---|---|---|---|---|---|---|---|
column names | المحافظة | نسبة موافق | نسبة غير موافق | عدد الناخبين | الأصوات الصحيحة | الأصوات الباطلة | نسبة المشاركة | موافق | غير موافق |
row 1 | القليوبية | 60.0 | 40.0 | 2,639,808 | 853,125 | 15,224 | 32.9 | 512,055 | 341,070 |
row 2 | الجيزة | 66.7 | 33.3 | 4,383,701 | 1,493,092 | 24,105 | 34.6 | 995,417 | 497,675 |
row 3 | القاهرة | 43.2 | 56.8 | 6,580,478 | 2,254,698 | 36,342 | 34.8 | 974,371 | 1,280,327 |
row 4 | قنا | 84.5 | 15.5 | 1,629,713 | 364,509 | 6,743 | 22.8 | 307,839 | 56,670 |
The fragment identifier#col=3
identifies the third of the columns, namedنسبة غير موافق
(appearing asنسبة غير موافق
in the example).
section6.5.1Bidirectional Tables defines how this table model should be displayed by compliant applications, and how metadata can affect the display. The default is for the display to be determined by the content of the table. For example, if this CSV were turned into an HTML table for display into a web page, it should be displayed with the first column on the right and the last on the left, as follows:
غير موافق | موافق | نسبة المشاركة | الأصوات الباطلة | الأصوات الصحيحة | عدد الناخبين | نسبة غير موافق | نسبة موافق | المحافظة |
---|---|---|---|---|---|---|---|---|
341,070 | 512,055 | 32.9 | 15,224 | 853,125 | 2,639,808 | 40.0 | 60.0 | القليوبية |
497,675 | 995,417 | 34.6 | 24,105 | 1,493,092 | 4,383,701 | 33.3 | 66.7 | الجيزة |
1,280,327 | 974,371 | 34.8 | 36,342 | 2,254,698 | 6,580,478 | 56.8 | 43.2 | القاهرة |
56,670 | 307,839 | 22.8 | 6,743 | 364,509 | 1,629,713 | 15.5 | 84.5 | قنا |
The fragment identifier#col=3
still identifies the third of the columns, namedنسبة غير موافق
, which appears in the HTML display as the third column from the right and is what those who read right-to-left would think of as the third column.
Note that this display matches that shownon the original website.
A simple CSV file that complies to the constraints described insection7.Best Practice CSV, athttp://example.org/tree-ops.csv
, might look like:
GID,On Street,Species,Trim Cycle,Inventory Date1,ADDISON AV,Celtis australis,Large Tree Routine Prune,10/18/20102,EMERSON ST,Liquidambar styraciflua,Large Tree Routine Prune,6/2/2010
Parsing this file results in anannotated tabular data model of a singletableT with five columns and two rows. The columns have the annotations shown in the following table:
id | core annotations | ||||
---|---|---|---|---|---|
table | number | source number | cells | titles | |
C1 | T | 1 | 1 | C1.1,C2.1 | GID |
C2 | T | 2 | 2 | C1.2,C2.2 | On Street |
C3 | T | 3 | 3 | C1.3,C2.3 | Species |
C4 | T | 4 | 4 | C1.4,C2.4 | Trim Cycle |
C5 | T | 5 | 5 | C1.5,C2.5 | Inventory Date |
The extractedembedded metadata, as defined in [tabular-metadata], would look like:
{"@type":"Table","url":"http://example.org/tree-ops.csv","tableSchema":{"columns":[{"titles":["GID"]},{"titles":["On Street"]},{"titles":["Species"]},{"titles":["Trim Cycle"]},{"titles":["Inventory Date"]}]}}
The rows have the annotations shown in the following table:
id | core annotations | |||
---|---|---|---|---|
table | number | source number | cells | |
R1 | T | 1 | 2 | C1.1,C1.2,C1.3,C1.4,C1.5 |
R2 | T | 2 | 3 | C2.1,C2.2,C2.3,C2.4,C2.5 |
Thesource number of each row is offset by one from thenumber of each row because in the source CSV file, the header line is the first line. It is possible to reconstruct a [RFC7111] compliant reference to the first record in the original CSV file (http://example.org/tree-ops.csv#row=2
) using the value of the row's source number. This enables implementations to retain provenance between the table model and the original file.
The cells have the annotations shown in the following table (note that thevalues of all the cells in the table are strings, denoted by the double quotes in the table below):
id | core annotations | ||||
---|---|---|---|---|---|
table | column | row | string value | value | |
C1.1 | T | C1 | R1 | "1" | "1" |
C1.2 | T | C2 | R1 | "ADDISON AV" | "ADDISON AV" |
C1.3 | T | C3 | R1 | "Celtis australis" | "Celtis australis" |
C1.4 | T | C4 | R1 | "Large Tree Routine Prune" | "Large Tree Routine Prune" |
C1.5 | T | C5 | R1 | "10/18/2010" | "10/18/2010" |
C2.1 | T | C1 | R2 | "2" | "2" |
C2.2 | T | C2 | R2 | "EMERSON ST" | "EMERSON ST" |
C2.3 | T | C3 | R2 | "Liquidambar styraciflua" | "Liquidambar styraciflua" |
C2.4 | T | C4 | R2 | "Large Tree Routine Prune" | "Large Tree Routine Prune" |
C2.5 | T | C5 | R2 | "6/2/2010" | "6/2/2010" |
The tools that the consumer of this data uses may provide a mechanism for overriding the metadata that has been provided within the file itself. For example, they might enable the consumer to add machine-readable names to the columns, or to mark the fifth column as holding a date in the formatM/D/YYYY
. These facilities are implementation defined; the code for invoking a Javascript-based parser might look like:
data.parse({"column-names":["GID","on_street","species","trim_cycle","inventory_date"],"datatypes":["string","string","string","string","date"],"formats":[null,null,null,null,"M/D/YYYY"]});
This is equivalent to a metadata file expressed in the syntax defined in [tabular-metadata], looking like:
{"@type":"Table","url":"http://example.org/tree-ops.csv","tableSchema":{"columns":[{"name":"GID","datatype":"string"},{"name":"on_street","datatype":"string"},{"name":"species","datatype":"string"},{"name":"trim_cycle","datatype":"string"},{"name":"inventory_date","datatype":{"base":"date","format":"M/d/yyyy"}}]}}
This would be merged with theembedded metadata found in the CSV file, providing the titles for the columns to create:
{"@type":"Table","url":"http://example.org/tree-ops.csv","tableSchema":{"columns":[{"name":"GID","titles":"GID","datatype":"string"},{"name":"on_street","titles":"On Street","datatype":"string"},{"name":"species","titles":"Species","datatype":"string"},{"name":"trim_cycle","titles":"Trim Cycle","datatype":"string"},{"name":"inventory_date","titles":"Inventory Date","datatype":{"base":"date","format":"M/d/yyyy"}}]}}
The processor can then create anannotated tabular data model that includedname
annotations on the columns, anddatatype
annotations on the cells, and created cells whosevalues were of appropriate types (in the case of this Javascript implementation, the cells in the last column would beDate
objects, for example).
Assuming this kind of implementation-defined parsing, the columns would then have the annotations shown in the following table:
id | core annotations | ||||||
---|---|---|---|---|---|---|---|
table | number | source number | cells | name | titles | datatype | |
C1 | T | 1 | 1 | C1.1,C2.1 | GID | GID | string |
C2 | T | 2 | 2 | C1.2,C2.2 | on_street | On Street | string |
C3 | T | 3 | 3 | C1.3,C2.3 | species | Species | string |
C4 | T | 4 | 4 | C1.4,C2.4 | trim_cycle | Trim Cycle | string |
C5 | T | 5 | 5 | C1.5,C2.5 | inventory_date | Inventory Date | { "base": "date", "format": "M/d/yyyy" } |
The cells have the annotations shown in the following table. Because of the overrides provided by the consumer to guide the parsing, and the way the parser works, the cells in theInventory Date
column (cellsC1.5 andC2.5) havevalues that are parsed dates rather than unparsed strings.
id | core annotations | ||||
---|---|---|---|---|---|
table | column | row | string value | value | |
C1.1 | T | C1 | R1 | "1" | "1" |
C1.2 | T | C2 | R1 | "ADDISON AV" | "ADDISON AV" |
C1.3 | T | C3 | R1 | "Celtis australis" | "Celtis australis" |
C1.4 | T | C4 | R1 | "Large Tree Routine Prune" | "Large Tree Routine Prune" |
C1.5 | T | C5 | R1 | "10/18/2010" | 2010-10-18 |
C2.1 | T | C1 | R2 | "2" | "2" |
C2.2 | T | C2 | R2 | "EMERSON ST" | "EMERSON ST" |
C2.3 | T | C3 | R2 | "Liquidambar styraciflua" | "Liquidambar styraciflua" |
C2.4 | T | C4 | R2 | "Large Tree Routine Prune" | "Large Tree Routine Prune" |
C2.5 | T | C5 | R2 | "6/2/2010" | 2010-06-02 |
A similar set of annotations could be provided through a metadata file, located as discussed insection5.Locating Metadata and defined in [tabular-metadata]. For example, this might look like:
{"@context":["http://www.w3.org/ns/csvw",{"@language":"en"}],"url":"tree-ops.csv","dc:title":"Tree Operations","dcat:keyword":["tree","street","maintenance"],"dc:publisher":{"schema:name":"Example Municipality","schema:url":{"@id":"http://example.org"}},"dc:license":{"@id":"http://opendefinition.org/licenses/cc-by/"},"dc:modified":{"@value":"2010-12-31","@type":"xsd:date"},"tableSchema":{"columns":[{"name":"GID","titles":["GID","Generic Identifier"],"dc:description":"An identifier for the operation on a tree.","datatype":"string","required":true},{"name":"on_street","titles":"On Street","dc:description":"The street that the tree is on.","datatype":"string"},{"name":"species","titles":"Species","dc:description":"The species of the tree.","datatype":"string"},{"name":"trim_cycle","titles":"Trim Cycle","dc:description":"The operation performed on the tree.","datatype":"string"},{"name":"inventory_date","titles":"Inventory Date","dc:description":"The date of the operation that was performed.","datatype":{"base":"date","format":"M/d/yyyy"}}],"primaryKey":"GID","aboutUrl":"#gid-{GID}"}}
Theannotated tabular data model generated from this would be more sophisticated again. Thetable itself would have the following annotations:
dc:title
{"@value": "Tree Operations", "@language": "en"}
dcat:keyword
[{"@value": "tree", "@language", "en"}, {"@value": "street", "@language": "en"}, {"@value": "maintenance", "@language": "en"}]
dc:publisher
[{ "schema:name": "Example Municipality", "schema:url": {"@id": "http://example.org"} }]
dc:license
{"@id": "http://opendefinition.org/licenses/cc-by/"}
dc:modified
{"@value": "2010-12-31", "@type": "date"}
The columns would have the annotations shown in the following table:
id | core annotations | other annotations | ||||||
---|---|---|---|---|---|---|---|---|
table | number | source number | cells | name | titles | datatype | dc:description | |
C1 | T | 1 | 1 | C1.1,C2.1 | GID | GID ,Generic Identifier | string | An identifier for the operation on a tree. |
C2 | T | 2 | 2 | C1.2,C2.2 | on_street | On Street | string | The street that the tree is on. |
C3 | T | 3 | 3 | C1.3,C2.3 | species | Species | string | The species of the tree. |
C4 | T | 4 | 4 | C1.4,C2.4 | trim_cycle | Trim Cycle | string | The operation performed on the tree. |
C5 | T | 5 | 5 | C1.5,C2.5 | inventory_date | Inventory Date | { "base": "date", "format": "M/d/yyyy" } | The date of the operation that was performed. |
The rows have an additionalprimary key annotation, as shown in the following table:
id | core annotations | ||||
---|---|---|---|---|---|
table | number | source number | cells | primary key | |
R1 | T | 1 | 2 | C1.1,C1.2,C1.3,C1.4,C1.5 | C1.1 |
R2 | T | 2 | 3 | C2.1,C2.2,C2.3,C2.4,C2.5 | C2.1 |
Thanks to the provided metadata, the cells again have the annotations shown in the following table. The metadata file has provided the information to supplement the model with additional annotations but also, for theInventory Date
column (cellsC1.5 andC2.5), have avalue that is a parsed date rather than an unparsed string.
id | core annotations | |||||
---|---|---|---|---|---|---|
table | column | row | string value | value | about URL | |
C1.1 | T | C1 | R1 | "1" | "1" | http://example.org/tree-ops.csv#gid-1 |
C1.2 | T | C2 | R1 | "ADDISON AV" | "ADDISON AV" | http://example.org/tree-ops.csv#gid-1 |
C1.3 | T | C3 | R1 | "Celtis australis" | "Celtis australis" | http://example.org/tree-ops.csv#gid-1 |
C1.4 | T | C4 | R1 | "Large Tree Routine Prune" | "Large Tree Routine Prune" | http://example.org/tree-ops.csv#gid-1 |
C1.5 | T | C5 | R1 | "10/18/2010" | 2010-10-18 | http://example.org/tree-ops.csv#gid-1 |
C2.1 | T | C1 | R2 | "2" | "2" | http://example.org/tree-ops.csv#gid-2 |
C2.2 | T | C2 | R2 | "EMERSON ST" | "EMERSON ST" | http://example.org/tree-ops.csv#gid-2 |
C2.3 | T | C3 | R2 | "Liquidambar styraciflua" | "Liquidambar styraciflua" | http://example.org/tree-ops.csv#gid-2 |
C2.4 | T | C4 | R2 | "Large Tree Routine Prune" | "Large Tree Routine Prune" | http://example.org/tree-ops.csv#gid-2 |
C2.5 | T | C5 | R2 | "6/2/2010" | 2010-06-02 | http://example.org/tree-ops.csv#gid-2 |
The following slightly amended CSV file contains quoted and missing cell values:
GID,On Street,Species,Trim Cycle,Inventory Date1,ADDISON AV,"Celtis australis","Large Tree Routine Prune",10/18/20102,,"Liquidambar styraciflua","Large Tree Routine Prune",
Parsing this file similarly results in anannotated tabular data model of a singletableT with five columns and two rows. The columns and rows have exactly the same annotations as previously, but there are twonull
cell values forC2.2 andC2.5. Note that the quoting of values within the CSV makes no difference to either thestring value orvalue of the cell.
id | core annotations | ||||
---|---|---|---|---|---|
table | column | row | string value | value | |
C1.1 | T | C1 | R1 | "1" | "1" |
C1.2 | T | C2 | R1 | "ADDISON AV" | "ADDISON AV" |
C1.3 | T | C3 | R1 | "Celtis australis" | "Celtis australis" |
C1.4 | T | C4 | R1 | "Large Tree Routine Prune" | "Large Tree Routine Prune" |
C1.5 | T | C5 | R1 | "10/18/2010" | "10/18/2010" |
C2.1 | T | C1 | R2 | "2" | "2" |
C2.2 | T | C2 | R2 | "" | null |
C2.3 | T | C3 | R2 | "Liquidambar styraciflua" | "Liquidambar styraciflua" |
C2.4 | T | C4 | R2 | "Large Tree Routine Prune" | "Large Tree Routine Prune" |
C2.5 | T | C5 | R2 | "" | null |
The following example illustrates some of the complexities that can be involved in parsing tabular data, how the flags described above can be used, and how new tabular data formats could be defined that embed additional annotations into the tabular data model.
In this example, the publishers of the data are using an internal convention to supply additional metadata about the tabular data embedded within the file itself. They are also using a tab as a separator rather than a comma.
#publisherCity of Palo Alto#updated12/31/2010#nameGIDon_streetspeciestrim_cycleinventory_date#datatypestringstringstringstringdate:M/D/YYYYGIDOn StreetSpeciesTrim CycleInventory Date1ADDISON AVCeltis australisLarge Tree Routine Prune10/18/20102EMERSON STLiquidambar styracifluaLarge Tree Routine Prune6/2/2010
Naive parsing of the above data will assume a comma separator and thus results in a singletableT with a single column and six rows. The column has the annotations shown in the following table:
id | core annotations | ||||
---|---|---|---|---|---|
table | number | source number | cells | titles | |
C1 | T | 1 | 1 | C1.1,C2.1,C3.1,C4.1,C5.1 | # publisher City of Palo Alto |
The rows have the annotations shown in the following table:
id | core annotations | |||
---|---|---|---|---|
table | number | source number | cells | |
R1 | T | 1 | 2 | C1.1 |
R2 | T | 2 | 3 | C2.1 |
R3 | T | 3 | 4 | C3.1 |
R4 | T | 4 | 5 | C4.1 |
R5 | T | 5 | 6 | C5.1 |
R6 | T | 6 | 7 | C6.1 |
The cells have the annotations shown in the following table (note that thevalues of all the cells in the table are strings, denoted by the double quotes in the table below):
id | core annotations | ||||
---|---|---|---|---|---|
table | column | row | string value | value | |
C1.1 | T | C1 | R1 | "# updated 12/31/2010" | "# updated 12/31/2010" |
C1.1 | T | C1 | R1 | "#nameGIDon_streetspeciestrim_cycleinventory_date" | "#nameGIDon_streetspeciestrim_cycleinventory_date" |
C2.1 | T | C1 | R2 | "#datatypestringstringstringstringdate:M/D/YYYY" | "#datatypestringstringstringstringdate:M/D/YYYY" |
C3.1 | T | C1 | R3 | "GIDOn StreetSpeciesTrim CycleInventory Date" | "GIDOn StreetSpeciesTrim CycleInventory Date" |
C4.1 | T | C1 | R4 | "1 ADDISON AVCeltis australisLarge Tree Routine Prune10/18/2010" | "1 ADDISON AVCeltis australisLarge Tree Routine Prune10/18/2010" |
C5.1 | T | C1 | R5 | "2 EMERSON STLiquidambar styraciflua Large Tree Routine Prune6/2/2010" | "2 EMERSON STLiquidambar styraciflua Large Tree Routine Prune6/2/2010" |
The consumer of the data may use the flags described above to create a more useful set of data from this file. Specifically, they could set:
#
Setting these is done in an implementation-defined way. It could be done, for example, by sniffing the contents of the file itself, through command-line options, or by embedding a dialect description into a metadata file associated with the tabular data, which would look like:
{"delimiter":"\t","skipRows":4,"skipColumns":1,"commentPrefix":"#"}
With these flags in operation, parsing this file results in anannotated tabular data model of a singletableT with five columns and two rows which is largely the same as that created from the original simple example described insection8.2.1Simple Example. There are three differences.
First, because the four skipped rows began with thecomment prefix, the table itself now has fourrdfs:comment
annotations, with the values:
publisherCity of Palo Alto
updated12/31/2010
nameGIDon_streetspeciestrim_cycleinventory_date
datatypestringstringstringstringdate:M/D/YYYY
Second, because the first column has been skipped, thesource number of each of the columns is offset by one from thenumber of each column:
id | core annotations | ||||
---|---|---|---|---|---|
table | number | source number | cells | titles | |
C1 | T | 1 | 2 | C1.1,C2.1 | GID |
C2 | T | 2 | 3 | C1.2,C2.2 | On Street |
C3 | T | 3 | 4 | C1.3,C2.3 | Species |
C4 | T | 4 | 5 | C1.4,C2.4 | Trim Cycle |
C5 | T | 5 | 6 | C1.5,C2.5 | Inventory Date |
Finally, because four additional rows have been skipped, thesource number of each of the rows is offset by five from therow number (the four skipped rows plus the single header row):
id | core annotations | |||
---|---|---|---|---|
table | number | source number | cells | |
R1 | T | 1 | 6 | C1.1,C1.2,C1.3,C1.4,C1.5 |
R2 | T | 2 | 7 | C2.1,C2.2,C2.3,C2.4,C2.5 |
The conventions used in this data (invented for the purpose of this example) are in fact intended to create anannotated tabular data model which includes named annotations on the table itself, on the columns, and on the cells. The creator of these conventions could create a specification for this particular tabular data syntax and register a media type for it. The specification would include statements like:
"#"
, the second column is the name of an annotation on the table and the values of the remaining columns are concatenated to create the value of that annotation.#name
, the remaining cells in the row provide aname
annotation for each column in the table.#datatype
, the remaining cells in the row providedatatype
/format
annotations for the cells within the relevant column, and these are interpreted to create thevalue for each cell in that column.title
annotations on the columns in the table.Parsers that recognized the format could then build a more sophisticated annotated tabular data model using only the embedded information in thetabular data file. They would extractembedded metadata looking like:
{"@context":"http://www.w3.org/ns/csvw","url":"tree-ops.csv","dc:publisher":"City of Palo Alto","dc:updated":"12/31/2010","tableSchema":{"columns":[{"name":"GID","titles":"GID","datatype":"string",},{"name":"on_street","titles":"On Street","datatype":"string"},{"name":"species","titles":"Species","datatype":"string"},{"name":"trim_cycle","titles":"Trim Cycle","datatype":"string"},{"name":"inventory_date","titles":"Inventory Date","datatype":{"base":"date","format":"M/d/yyyy"}}]}}
As before, the result would be a singletableT with five columns and two rows. The table itself would have two annotations:
dc:publisher
{"@value": "City of Palo Alto"}
dc:updated
{"@value": "12/31/2010"}
The columns have the annotations shown in the following table:
id | core annotations | |||||
---|---|---|---|---|---|---|
table | number | source number | cells | name | titles | |
C1 | T | 1 | 2 | C1.1,C2.1 | GID | GID |
C2 | T | 2 | 3 | C1.2,C2.2 | on_street | On Street |
C3 | T | 3 | 4 | C1.3,C2.3 | species | Species |
C4 | T | 4 | 5 | C1.4,C2.4 | trim_cycle | Trim Cycle |
C5 | T | 5 | 6 | C1.5,C2.5 | inventory_date | Inventory Date |
The rows have the annotations shown in the following table, exactly as in previous examples:
id | core annotations | |||
---|---|---|---|---|
table | number | source number | cells | |
R1 | T | 1 | 6 | C1.1,C1.2,C1.3,C1.4,C1.5 |
R2 | T | 2 | 7 | C2.1,C2.2,C2.3,C2.4,C2.5 |
The cells have the annotations shown in the following table. Because of the way the particular tabular data format has been specified, these include additional annotations but also, for theInventory Date
column (cellsC1.5 andC2.5), have avalue that is a parsed date rather than an unparsed string.
id | core annotations | ||||
---|---|---|---|---|---|
table | column | row | string value | value | |
C1.1 | T | C1 | R1 | "1" | "1" |
C1.2 | T | C2 | R1 | "ADDISON AV" | "ADDISON AV" |
C1.3 | T | C3 | R1 | "Celtis australis" | "Celtis australis" |
C1.4 | T | C4 | R1 | "Large Tree Routine Prune" | "Large Tree Routine Prune" |
C1.5 | T | C5 | R1 | "10/18/2010" | 2010-10-18 |
C2.1 | T | C1 | R2 | "2" | "2" |
C2.2 | T | C2 | R2 | "EMERSON ST" | "EMERSON ST" |
C2.3 | T | C3 | R2 | "Liquidambar styraciflua" | "Liquidambar styraciflua" |
C2.4 | T | C4 | R2 | "Large Tree Routine Prune" | "Large Tree Routine Prune" |
C2.5 | T | C5 | R2 | "6/2/2010" | 2010-06-02 |
The following example shows a CSV file with multiple header lines:
Who,What,,Where,Organization,Sector,Subsector,Department,Municipality#org,#sector,#subsector,#adm1,#adm2UNICEF,Education,Teacher training,Chocó,QuidbóUNICEF,Education,Teacher training,Chocó,Bojayá
Here, the first line contains some grouping titles in the first line, which are not particularly helpful. The lines following those contain useful titles for the columns. Thus the appropriate configuration for a dialect description is:
{"skipRows":1,"headerRowCount":2}
With this configuration, the table model contains five columns, each of which have two titles, summarized in the following table:
id | core annotations | ||||
---|---|---|---|---|---|
table | number | source number | cells | titles | |
C1 | T | 1 | 1 | C1.1,C2.1 | Organization ,#org |
C2 | T | 2 | 2 | C1.2,C2.2 | Sector ,#sector |
C3 | T | 3 | 3 | C1.3,C2.3 | Subsector ,#subsector |
C4 | T | 4 | 4 | C1.4,C2.4 | Department ,#adm1 |
C5 | T | 5 | 5 | C1.5,C2.5 | Municipality ,#adm2 |
As metadata, this would look like:
{"tableSchema":{"columns":[{"titles":["Organization","#org"]},{"titles":["Sector","#sector"]},{"titles":["Subsector","#subsector"]},{"titles":["Department","#adm1"]},{"titles":["Municipality","#adm2"]},]}}
A separate metadata file could contain just the second of each of these titles, for example:
{"tableSchema":{"columns":[{"name":"org","titles":#org" },{"name":"sector","titles":#sector" },{"name":"subsector","titles":#subsector" },{"name":"adm1","titles":#adm1" },{"name":"adm2","titles":#adm2" },]}}
This enables people from multiple jurisdictions to use the same tabular data structures without having to use exactly the same titles within their documents.
This section is non-normative.
This appendix outlines various ways in which CSV is defined.
[RFC4180] defines CSV with the following ABNF grammar:
file = [header CRLF] record *(CRLF record) [CRLF]header = name *(COMMA name)record = field *(COMMA field)name = fieldfield = (escaped / non-escaped)escaped = DQUOTE *(TEXTDATA / COMMA / CR / LF / 2DQUOTE) DQUOTEnon-escaped = *TEXTDATACOMMA = %x2CCR = %x0DDQUOTE = %x22LF = %x0ACRLF = CR LFTEXTDATA = %x20-21 / %x23-2B / %x2D-7E
Of particular note here are:
TEXTDATA
indicates that only non-control ASCII characters are permitted within a CSV file. This restriction is routinely ignored in practice, and is impractical on the international web.CRLF
. This makes it harder to produce CSV files on Unix-based systems where the usual line ending isLF
.header
parameter on the media type indicates whether the header is present or not.""
).Excel is a common tool for both creating and reading CSV documents, and therefore the CSV that it produces is a de facto standard.
The following describes the behavior of Microsoft Excel for Mac 2011 with an English locale. Further testing is needed to see the behavior of Excel in other situations.
Excel generates CSV files encoded using Windows-1252 withLF
line endings. Characters that cannot be represented within Windows-1252 are replaced by underscores. Only those cells that need escaping (e.g. because they contain commas or double quotes) are escaped, and double quotes are escaped with two double quotes.
Dates and numbers are formatted as displayed, which means that formatting can lead to information being lost or becoming inconsistent.
When opening CSV files, Excel interprets CSV files saved in UTF-8 as being encoded as Windows-1252 (whether or not aBOM is present). It correctly deals with double quoted cells, except that it converts line breaks within cells into spaces. It understandsCRLF
as a line break. It detects dates (formatted asYYYY-MM-DD
) and formats them in the default date formatting for files.
Excel provides more control when importing CSV files into Excel. However, it does not properly understand UTF-8 (with or withoutBOM). It does however properly understand UTF-16 and can read non-ASCII characters from a UTF-16-encoded file.
A particular quirk in the importing of CSV is that if a cell contains a line break, the final double quote that escapes the cell will be included within it.
When tabular data is copied from Excel, it is copied in a tab-delimited format, withLF
line breaks.
Downloaded CSV files are encoded in UTF-8, without aBOM, and withLF
line endings. Dates and numbers are formatted as they appear within the spreadsheet.
CSV files can be imported as UTF-8 (with or withoutBOM).CRLF
line endings are correctly recognized. Dates are reformatted to the default date format on load.
Tabular Data Packages place the following restrictions on CSV files:
As a starting point, CSV files included in a Tabular Data Package package must conform to the RFC for CSV (4180 - Common Format and MIME Type for Comma-Separated Values (CSV) Files). In addition:
File namesMUST end with
.csv
.FilesMUST be encoded as UTF-8.
FilesMUST have a single header row. This rowMUST be the first row in the file.
Terminology: each column in the CSV file is termed afield and its
name
is the string in that column in the header row.The
name
MUST be unique amongst fields,MUST contain at least one character, andMUST conform to the character restrictions defined for thename
property.Rows in the fileMUST NOT contain more fields than are in the header row (though they may contain less).
Each fileMUST have an entry in the
tables
array in thedatapackage.json
file.The resource metadataMUST include a
tableSchema
attribute whose valueMUST be a validschema description.All fields in the CSV filesMUST be described in theschema description.
CSV files generated by different applications often vary in their syntax, e.g. use of quoting characters, delimiters, etc. To encourage conformance, CSV files in a CSV files in a Tabular Data PackageSHOULD:
- Use "," as field delimiters.
- Use
CRLF
(U+000D U+000A
) orLF
(U+000A
) as line terminators.If a CSV file does not follow these rules then its specific CSV dialectMUST be documented. The resource hash for the resource in the
datapackage.json
descriptorMUST:
- Include a
dialect
key that conforms to that described in theCSV Dialect Description Format.Applications processing the CSV fileSHOULD read use the
dialect
of the CSV file to guide parsing.
To replicate the findings above, test files which include non-ASCII characters, double quotes, and line breaks within cells are:
This section is non-normative.
text/tab-separated-values
instead of the un-registeredtext/tsv
./.well-known/csvm
has been registered at IANAThe document has undergone substantial changes since the last working draft. Below are some of the changes made: