Abstract

Validation, conversion, display, and search of tabular data on the web requires additional metadata that describes how the data should be interpreted. This document defines a vocabulary for metadata that annotates tabular data. This can be used to provide metadata at various levels, from groups of tables and how they relate to each other down to individual cells within a table.

The metadata defined in this specification is used to provide annotations on an annotated table or group of tables, as defined in [tabular-data-model]. Annotated tables form the basis for all further processing, such as validating, converting, or displaying the tables.

Status of This Document

This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.

The CSV on the Web Working Group was chartered 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 "Metadata vocabulary for CSV data" recommendation.

This document was published by the CSV on the Web Working Group as a Recommendation. If you wish to make comments regarding this document, please send them to public-csv-wg@w3.org (subscribe, archives). All comments are welcome.

Please see the Working Group's implementation report.

This document has been reviewed by W3C Members, by software developers, and by other W3C groups and interested parties, and is endorsed by the Director as a W3C 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 the 5 February 2004 W3C Patent Policy. W3C maintains a public 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 contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.

This document is governed by the 1 September 2015 W3C Process Document.

Table of Contents

1. Introduction

Interpreting tabular data that is available on the web, particularly as CSV, usually requires additional metadata. As an example, say that the following CSV file were available at http://example.org/tree-ops.csv:

Example 1: http://example.org/tree-ops.csv
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 human consumer of this data might be able to figure out the meaning of the different columns, particularly if there were some additional human-readable documentation made available. Automated processors would have a much harder time; realistically they would be limited to displaying the information in a table. Making available machine-readable metadata helps with the interpretation of the tabular data. For example, say that the following metadata file were available at http://example.org/tree-ops.csv-metadata.json:

Example 2: http://example.org/tree-ops.csv-metadata.json
{
  "@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}"
  }
}

This metadata file may be referenced from a Link header when the CSV file is retrieved, or through looking in known locations for metadata (as described in [tabular-data-model]). It provides information for different types of applications:

Note

Implementations may fulfil one or more of these functions. In particular, Converters may or may not act as a Validator (perhaps through the setting of a flag), and check the data that they are converting to ensure that it is compliant with the schema. If a Converter does not also act as a Validator it may produce invalid output.

[tabular-data-model] defines an annotated tabular data model in which groups of tables, individual tables, columns, rows, and cells can be annotated with annotations. That specification also describes how to locate metadata about a given tabular data file.

This document defines the format and structure of metadata documents, and how these are interpreted to create an Annotated Tabular Data Model. It also defines how to validate tabular data based on some of these annotations.

2. Conformance

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 words MAY, MUST, MUST NOT, SHOULD, and SHOULD NOT are to be interpreted as described in [RFC2119].

The metadata format is based on a dialect of [JSON-LD] as defined in section A. JSON-LD Dialect. This metadata can therefore be expressed as an RDF graph. It is not necessary for conformant applications to be able to process all JSON-LD, only the dialect defined in this specification. All applications that conform to this specification (including validators and applications that read or convert tabular data) MUST read the JSON-based format described in this document.

Tabular data MUST conform to the description from [tabular-data-model]. In particular note that each row MUST contain the same number of cells (although some of these cells may be empty). Parsers might not be able to map all CSV-encoded data to such a table. As such, the metadata format described in this specification cannot be applied to all CSV files.

This specification makes use of the compact IRI Syntax; please refer to the Compact 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/
dcat:
http://www.w3.org/ns/dcat#
foaf:
http://xmlns.com/foaf/0.1/
rdf:
http://www.w3.org/1999/02/22-rdf-syntax-ns#
schema:
http://schema.org/
xsd:
http://www.w3.org/2001/XMLSchema#

3. Typographical conventions

The following typographic conventions are used in this specification:

markup
Markup (elements, attributes, properties), machine processable values (string, characters, media types), property name, or a file name is in red-orange monospace font.
variable
A variable in pseudo-code or in an algorithm description is in italics.
definition
A definition of a term, to be used elsewhere in this or other specifications, is in bold and italics.
definition reference
A reference to a definition in this document is underlined and is also an active link to the definition itself.
markup definition reference
A references to a definition in this document, when the reference itself is also a markup, is underlined, red-orange monospace font, and is also an active link to the definition itself.
external definition reference
A reference to a definition in another document is underlined, in italics, and is also an active link to the definition itself.
markup external definition reference
A reference to a definition in another document, when the reference itself is also a markup, is underlined, in italics red-orange monospace font, and is also an active link to the definition itself.
hyperlink
A hyperlink is underlined and in blue.
[reference]
A document reference (normative or informative) is enclosed in square brackets and links to the references section.
Note

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.

Example 3
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.

4. Annotating Tables

The metadata defined in this specification is used to provide annotations on an annotated table or group of tables, as defined in [tabular-data-model]. Annotated tables form the basis for all further processing, such as validating, converting, or displaying the tables.

All compliant applications MUST create annotated tables based on the algorithm defined here. All compliant applications MUST generate errors and stop processing if a metadata document:

Compliant applications MUST ignore properties (aside from common properties) which are not defined in this specification and MUST generate a warning when they are encoutered.

If a property has a value that is not permitted by this specification, then if a default value is provided for that property, compliant applications MUST generate a warning and use that default value. If no default value is provided for that property, compliant applications MUST generate a warning and behave as if the property had not been specified. Additionally, including:

Metadata documents contain descriptions of groups of tables, tables, columns, rows, and cells, which are used to create annotations on an annotated tabular data model. A description object is a JSON object that describes a component of the annotated tabular data model (a group of tables, a table or a column) and has one or more properties that are mapped into properties on that component. There are two types of description objects:

The description objects contain a number of properties. These are:

For example, in the column description:

Example 4
{
  "name": "inventory_date",
  "titles": "Inventory Date",
  "dc:description": "The date of the operation that was performed.",
  "datatype": {
    "base": "date",
    "format": "M/d/yyyy"
  }
}

the properties name, titles, and dc:description are used to create the name, titles, datatype and dc:description annotations on the column in the data model. The datatype property is an inherited property that also affects the value of each cell in that column (see section 5.7 Inherited Properties for more on inherited properties).

5. Metadata Format

This section defines a set of properties and permitted values for annotating tabular data, and how these properties should be interpreted by applications.

A metadata document is a JSON document which holds an object at the top level. This object is a description object of either a group of tables or a single table. A metadata document may contain other referenced or embedded description objects, description objects for tables and columns. Additional JSON objects, not part of the annotated tabular data model, are used to describe schemas, dialect descriptions, foreign key definitions and transformation definitions.

Metadata Properties
Fig. 1 Diagram showing the properties of different metadata descriptors (see the diagram in SVG or PNG formats)

5.1 Property Syntax

There are different types of properties on description objects:

5.1.1 Array Properties

Array properties hold an array of one or more objects, which are usually description objects.

For example, the tables property is an array property. A table group description might contain:

"tables": [{
  "url": "https://example.org/countries.csv",
  "tableSchema": "https://example.org/countries.json"
}, {
  "url": "https://example.org/country_slice.csv",
  "tableSchema": "https://example.org/country_slice.json"
}]
          

in which case the tables property has a value that is an array of two table description objects.

Any items within an array that are not valid objects of the type expected are ignored. If the supplied value of an array property is not an array (e.g. if it is an integer), compliant applications MUST issue a warning and proceed as if the property had been supplied with an empty array.

5.1.3 URI Template Properties

URI template properties contain a [URI-TEMPLATE] which can be used to generate a URI. These URI templates are expanded in the context of each row by combining the template with a set of variables with values as defined in [URI-TEMPLATE]. The following variables are set:

column names
a variable is set for each column within the schema; the name of the variable is the column name of the column from the annotated table and the value is derived from the value of the cell in that column in the row that is currently being processed, namely one of:
Note

The languages of cell values are ignored.

_column
_column is set to the column number of the column from the annotated table that is currently being processed.
_sourceColumn
_sourceColumn is set to the source number of the column that is currently being processed; this usually varies from _column by skip columns.
_row
_row is set to the row number of the row from the annotated table that is currently being processed.
_sourceRow
_sourceRow is set to the source number of the row that is currently being processed; this usually varies from _row by skip rows and header rows.
_name
_name is set to the URI decoded column name annotation, as defined in [tabular-data-model], for the column that is currently being processed. (Percent-decoding is necessary as name may have been encoded if taken from titles; this prevents double percent-encoding.)

The annotation value is the result of:

  1. applying the template against the cell in that column in the row that is currently being processed.
  2. expanding any prefixes as if the value were the name of a common property, as described in section 5.8 Common Properties.
  3. resolving the resulting URL against the base URL of the table url if not null.

If the supplied value of a URI template property is not a string (e.g. if it is an integer), compliant applications MUST issue a warning and proceed as if the property had been supplied with an empty string.

For example, the aboutUrl property holds a URI template that is used to generate a URL identifier for each row, which might look like:

Example 8: expanded aboutUrl using _row
"aboutUrl": "http://example.org/example.csv#row.{_row}"

The about URL annotations that are generated and used as identifiers for the rows would then look like http://example.org/example.csv#row.1, http://example.org/example.csv#row.2 and so on.

Alternatively, with the CSV and metadata in the section 1. Introduction, the aboutUrl might look like:

Example 9: definition of aboutUrl using column titles
"aboutUrl": "http://example.org/tree/{on_street}/{GID}"

This would generate URIs such as http://example.org/tree/ADDISON%20AV/1 and http://example.org/tree/EMERSON%20ST/2.

If the value of the on_street or GID column were null, the URL would still be generated with the null value generating an empty string in the URL. For example if on_street were null and GID were 3, the generated URL would be http://example.org/tree//3.

Once the URI has been generated, it is resolved against the url of the table (e.g. the CSV file) to create an absolute URI. For example, given a aboutUrl within a schema such as:

Example 10: definition of aboutUrl as a relative URL
"aboutUrl": "#row.{_row}"

and given a CSV file at http://example.com/temp.csv, the URL for the first row will be http://example.com/temp.csv#row.1.

The propertyUrl property might be defined as "{#_name}", meaning that it resolves as a fragment identifier relative to the URL of the source of the table. For example, accessing it from a column with the column name GID would look like:

Example 11: expanded propertyUrl using {#_name}
"http://example.org/example.csv#GID"

A value defined within the data is also subject to expansion. For example, consider the following table:

Example 12: table with compact URLs and micro syntax
project_name,project_type,keywords
CSVW,foaf:Project,table;data;conversion

The project_type column might have a valueUrl specified as "{project_type}". In the first row the cell value is "foaf:Project". The foaf prefix is understood, as described in section 5.8 Common Properties, to expand to http://xmlns.com/foaf/0.1/Project.

Similarly, the keywords column might have a valueUrl specified as "https://duckduckgo.com/?q={keywords}". If the column also specifies "separator": ";", then the cell value of the keywords column would be an array of the three values table, data, and conversion. This is set as the value of the keywords variable within the URI template, which means the result would be https://duckduckgo.com/?q=table,data,conversion.

If the value in the keywords column were an empty sequence (created from an empty cell in the original data), the reference to that column would be expanded to an empty string, generating https://duckduckgo.com/?q=.

When a cell's value is not a string, the canonical representation of that value is used within the expanded URL. For example, the data may include dates such as those in:

Example 13: CSV containing dates
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

The Inventory Date column description would indicate that these were dates with the format M/d/yyyy:

Example 14
{
  "name": "inventory_date",
  "titles": "Inventory Date",
  "datatype": {
    "base": "date",
    "format": "M/d/yyyy"
  }
}

The string value of the inventory_date column in the first row is parsed to create the date 18th October 2010. When the inventory_date column is referenced within a URI template such as http://example.org/event/{inventory_date}, the canonical representation of that date, as defined in [xmlschema11-2] is used within the URL, giving the result http://example.org/event/2010-10-18.

5.1.4 Column Reference Properties

Column reference properties hold one or more references to other column description objects. The referenced description object must have a name property. Column reference properties can then reference column description objects through values that are:

  • strings — which MUST match the name on a column description object within the metadata document.
  • arrays — lists of strings as above.

Compliant applications MUST issue a warning and proceed as if the column reference property had not been specified if:

  • the supplied value is not a string or array (e.g. if it is an integer).
  • the supplied value is an empty array.
  • any of the values in the supplied array are not strings.
  • any of the supplied strings do not reference one or more columns.

For example, the primaryKey property is a column reference property on the schema. It has to hold references to columns defined elsewhere in the schema, and the descriptions of those columns must have name properties. It can hold a single reference, like this:

Example 15
"tableSchema": {
  "columns": [{
    "name": "GID"
  }, ... ],
  "primaryKey": "GID"
}

or it can contain an array of references, like this:

Example 16
"tableSchema": {
  "columns": [{
    "name": "givenName"
  }, {
    "name": "familyName"
  }, ... ],
  "primaryKey": [ "givenName", "familyName" ]
}

If the primaryKey property were given an invalid value, such as 1, or a column name were misspelled, the processor MUST issue a warning and ignore the value.

On the other hand, the columnReference property is a required property; if it has an invalid value, such as an empty array, then the processor will issue an error as if the property were not specified at all.

5.1.5 Object Properties

Object properties hold either a single object or a reference to an object by URL. Their values may be:

  • strings — resolved as URLs against the base URL.
  • objects — interpreted as structured objects.

If the supplied value of an object property is not a string or object (e.g. if it is an integer), compliant applications MUST issue a warning and proceed as if the property had been specified as an object with no properties.

Object properties are often used when the values can be or should be values within controlled vocabularies, or structured information which may be held elsewhere. For example, the dialect of a table is an object property. It could be provided as a URL that indicates a commonly used dialect, like this:

Example 17
"dialect": "http://example.org/tab-separated-values"

or a structured object, like this:

Example 18
"dialect": {
  "delimiter": "\t",
  "encoding": "utf-8"
}

When specified as a string, the resolved URL is used to fetch the referenced object during normalization as described in section 6. Normalization. For example, if http://example.org/tab-separated-values resolved to:

Example 19
{
  "@context": "http://www.w3.org/ns/csvw",
  "quoteChar": null,
  "header": true,
  "delimiter": "\t"
}

Following normalization, the value of the dialect property would then be:

Example 20
"dialect": {
  "@id": "http://example.org/tab-separated-values",
  "quoteChar": null,
  "header": true,
  "delimiter": "\t"
}

5.1.6 Natural Language Properties

Natural language properties hold natural language strings. Their values may be:

  • strings — interpreted as natural language strings in the default language.
  • arrays — interpreted as alternative natural language strings in the default language.
  • objects whose properties MUST be language codes as defined by [BCP47] and whose values are either strings or arrays, providing natural language strings in that language.

Natural language properties are used for titles. For example, the titles property on a column description provides a natural language label for a column. If it's a plain string like this:

Example 21
"titles": "Project title"

then that string is assumed to be in the default language (or have an undefined language, und, if there is no such property). Multiple alternative values can be given in an array:

Example 22
"titles": [
  "Project title",
  "Project"
]

It's also possible to provide multiple values in different languages, using an object structure. For example:

Example 23
"titles": {
  "en": "Project title",
  "fr": "Titre du projet"
}

and within such an object, the values of the properties can themselves be arrays:

Example 24
"titles": {
  "en": [ "Project title", "Project" ],
  "fr": "Titre du projet"
}

The annotation value of a natural language property is an object whose properties are language codes and where the values of those properties are an array of strings (see Language Maps in [JSON-LD]).

Note

When extracting a annotation value from a metadata that will have already been normalized, a natural language property will already have this form.

If the supplied value of a natural language property is not a string, array or object (e.g. if it is an integer), compliant applications MUST issue a warning and proceed as if the property had been specified as an empty array. If the supplied value is an array, any items in that array that are not strings MUST be ignored. If the supplied value is an object, any properties that are not valid language codes as defined by [BCP47] MUST be ignored, as must any properties whose value is not a string or an array, and any items that are not strings within array values of these properties.

5.1.7 Atomic Properties

Atomic properties hold atomic values. Their values may be:

  • numbers — interpreted as integers or doubles.
  • booleans — interpreted as booleans (true or false).
  • strings — interpreted as defined by the property.
  • objects — interpreted as defined by the property.
  • arrays — lists of numbers, booleans, strings, or objects.

The annotation value of a boolean atomic property is false if unset; otherwise, the annotation value of an atomic property is normalized value of that property, or the defined default value or null, if unset. Processors MUST issue a warning if a property is set to an invalid value type, such as a boolean atomic property being set to the number 1 or a numeric atomic property being set to the string "3.1415", and act as if the property had not been specified (which may mean using the default value for the property, or may mean raising an error and halting processing if the property is a required property).

5.2 Top-Level Properties

The top-level object of a metadata document or object referenced through an object property (whether it is a table group description, table description, schema, dialect description or transformation definition) MUST have a @context property. This is an array property, as defined in Section 8.7 of [JSON-LD]. The @context MUST have one of the following values:

5.3 Table Groups

A table group description is a JSON object that describes a group of tables.

5.3.1 Required Properties

tables

An array property of table descriptions for the tables in the group, namely those listed in the tables annotation on the group of tables being described. Compliant application MUST raise an error if this array does not contain one or more table descriptions.

5.3.2 Optional Properties

The description of a group of tables MAY also contain:

dialect

An object property that provides a single dialect description. If provided, dialect provides hints to processors about how to parse the referenced files to create tabular data models for the tables in the group. This may be provided as an embedded object or as a URL reference. See section 5.9 Dialect Descriptions for more details.

notes

An array property that provides an array of objects representing arbitrary annotations on the annotated group of tables. The value of this property becomes the value of the notes annotation for the group of tables. The properties on these objects are interpreted equivalently to common properties as described in section 5.8 Common Properties.

Note

The Web Annotation Working Group is developing a vocabulary for expressing annotations. In future versions of this specification, we anticipate referencing that vocabulary.

tableDirection

An atomic property that MUST have a single string value that is one of "rtl", "ltr", or "auto". Indicates whether the tables in the group should be displayed with the first column on the right, on the left, or based on the first character in the table that has a specific direction. The value of this property becomes the value of the table direction annotation for all the tables in the table group. See Bidirectional Tables in [tabular-data-model] for details. The default value for this property is "auto".

tableSchema

An object property that provides a single schema description as described in section 5.5 Schemas, used as the default for all the tables in the group. This may be provided as an embedded object within the JSON metadata or as a URL reference to a separate JSON object that is a schema description.

transformations

An array property of transformation definitions that provide mechanisms to transform the tabular data into other formats. The value of this property becomes the value of the transformations annotation for all the tables in the table group.

@id
If included, @id is a link property that identifies the group of tables, as defined by [tabular-data-model], described by this table group description. It MUST NOT start with _:. The value of this property becomes the value of the id annotation for the group of tables.
@type

If included, @type is an atomic property that MUST be set to "TableGroup". Publishers MAY include this to provide additional information to JSON-LD based toolchains.

The description MAY contain any common properties to provide extra metadata about the group of tables as a whole.

The description MAY contain inherited properties to describe cells within the tables.

5.3.3 Table Group Description Compatibility

Two table group descriptions are compatible if any table descriptions they contain with matching normalized url properties are themselves compatible as defined in section 5.4.3 Table Description Compatibility.

5.4 Tables

A table description is a JSON object that describes a table within a CSV file.

5.4.1 Required Properties

url

This link property gives the single URL of the CSV file that the table is held in, relative to the location of the metadata document. The value of this property is the value of the url annotation for the annotated table this table description describes.

5.4.2 Optional Properties

The description of a table MAY also contain:

dialect

As defined for table groups.

notes

An array property that provides an array of objects representing arbitrary annotations on the annotated tabular data model. The value of this property becomes the value of the notes annotation for the table. The properties on these objects are interpreted equivalently to common properties as described in section 5.8 Common Properties.

Note

The Web Annotation Working Group is developing a vocabulary for expressing annotations. In future versions of this specification, we anticipate referencing that vocabulary.

suppressOutput

A boolean atomic property. If true, suppresses any output that would be generated when converting this table. The value of this property becomes the value of the suppress output annotation for this table. The default is false.

tableDirection

As defined for table groups. The value of this property becomes the value of the table direction annotation for this table.

tableSchema

An object property that provides a single schema description as described in section 5.5 Schemas. This may be provided as an embedded object within the JSON metadata or as a URL reference to a separate JSON schema document. If a table description is within a table group description, the tableSchema from that table group acts as the default for this property.

If a tableSchema is not declared in table description, it may be declared on the table group description, which is then used as the schema for this table description.

The @id property of the tableSchema, if there is one, becomes the value of the schema annotation for this table.

Note

When a schema is referenced by URL, this URL becomes the value of the @id property in the normalized schema description, and thus the value of the schema annotation on the table.

transformations

As defined for table groups. The value of this property becomes the value of the transformations annotation for this table.

@id

If included, @id is a link property that identifies the table, as defined in [tabular-data-model], described by this table description. It MUST NOT start with _:. The value of this property becomes the value of the id annotation for this table.

@type

If included, @type is an atomic property that MUST be set to "Table". Publishers MAY include this to provide additional information to JSON-LD based toolchains.

The description MAY contain any common properties to provide extra metadata about the table as a whole.

The description MAY contain inherited properties to describe cells within the table.

5.4.3 Table Description Compatibility

Two table descriptions are compatible if they have equivalent normalized url properties, and have compatible schemas as defined in section 5.5.1 Schema Compatibility.

5.5 Schemas

A schema is a definition of a tabular format that may be common to multiple tables. For example, multiple tables from different sources may have the same columns and be designed such that they can be aggregated together.

A schema description is a JSON object that encodes the information about a schema, which describes the structure of a table. All the properties of a schema description are optional.

columns

An array property of column descriptions as described in section 5.6 Columns. These are matched to columns in tables that use the schema by position: the first column description in the array applies to the first column in the table, the second to the second and so on.

The name properties of the column descriptions MUST be unique within a given table description.

foreignKeys

An array property of foreign key definitions that define how the values from specified columns within this table link to rows within this table or other tables. A foreign key definition is a JSON object that MUST contain only the following properties:

columnReference

A column reference property that holds either a single reference to a column description object within this schema, or an array of references. These form the referencing columns for the foreign key definition.

reference

An object property that identifies a referenced table and a set of referenced columns within that table. Its properties are:

resource

A link property holding a URL that is the identifier for a specific table that is being referenced. If this property is present then schemaReference MUST NOT be present. The table group MUST contain a table whose url annotation is identical to the expanded value of this property. That table is the referenced table.

schemaReference

A link property holding a URL that is the identifier for a schema that is being referenced. If this property is present then resource MUST NOT be present. The table group MUST contain a table with a tableSchema having a @id that is identical to the expanded value of this property, and there MUST NOT be more than one such table. That table is the referenced table.

columnReference

A column reference property that holds either a single reference (by name) to a column description object within the tableSchema of the referenced table, or an array of such references.

The value of this property becomes the foreign keys annotation on the table using this schema by creating a list of foreign keys comprising a list of columns in the table and a list of columns in the referenced table. The value of this property is also used to create the value of the referenced rows annotation on each of the rows in the table that uses this schema, which is a pair of the relevant foreign key and the referenced row in the referenced table.

As defined in [tabular-data-model], validators MUST check that, for each row, the combination of cells in the referencing columns references a unique row within the referenced table through a combination of cells in the referenced columns. For examples, see section 5.5.2.1 Foreign Key Reference Between Tables and section 5.5.2.2 Foreign Key Reference Between Schemas.

Note

It is not required for the table or schema referenced from a foreignKeys property to have a similarly defined primaryKey, though frequently it will.

primaryKey

A column reference property that holds either a single reference to a column description object or an array of references. The value of this property becomes the primary key annotation for each row within a table that uses this schema by creating a list of the cells in that row that are in the referenced columns.

As defined in [tabular-data-model], validators MUST check that each row has a unique combination of values of cells in the indicated columns. For example, if primaryKey is set to ["familyName", "givenName"] then every row must have a unique value for the combination of values of cells in the familyName and givenName columns.

rowTitles

A column reference property that holds either a single reference to a column description object or an array of references. The value of this property determines the titles annotation for each row within a table that uses this schema. The titles annotation holds the list of the values of the cells in that row that are in the referenced columns; if the value is not a string or has no associated language, it is interpreted as a string with an undefined language (und).

@id

If included, @id is a link property that identifies the schema described by this schema description. It MUST NOT start with _:.

@type

If included, @type is an atomic property that MUST be set to "Schema". Publishers MAY include this to provide additional information to JSON-LD based toolchains.

The description MAY contain any common properties to provide extra metadata about the schema as a whole.

The description MAY contain inherited properties to describe cells within tables that use this schema.

5.5.1 Schema Compatibility

Two schemas are compatible if they have the same number of non-virtual column descriptions, and the non-virtual column descriptions at the same index within each are compatible with each other. Column descriptions are compatible under the following conditions:

  • If either column description has neither name nor titles properties.
  • If there is a case-sensitive match between the name properties of the columns.
  • If there is a non-empty case-sensitive intersection between the titles values, where matches must have a matching language; und matches any language, and languages match if they are equal when truncated, as defined in [BCP47], to the length of the shortest language tag.
  • If not validating, and one schema has a name property but not a titles property, and the other has a titles property but not a name property.
Note

A column description within embedded metadata where the header dialect property is false will have neither name nor titles properties.

5.5.2 Examples

This section is non-normative.

5.5.2.1 Foreign Key Reference Between Tables

A list of countries is published at http://example.org/countries.csv with the structure:

Example 25: http://example.org/countries.csv
countryCode,latitude,longitude,name
AD,42.5,1.6,Andorra
AE,23.4,53.8,"United Arab Emirates"
AF,33.9,67.7,Afghanistan

Another file contains information about the population in some countries each year, at http://example.com/country_slice.csv with the structure:

Example 26: http://example.org/country_slice.csv
countryRef,year,population
AF,1960,9616353
AF,1961,9799379
AF,1962,9989846

The following metadata for the group of tables links the two together by defining a foreignKeys property:

Example 27: http://example.org/countries.json
{
  "@context": "http://www.w3.org/ns/csvw",
  "tables": [{
    "url": "http://example.org/countries.csv",
    "tableSchema": {
      "columns": [{
        "name": "countryCode",
        "datatype": "string",
        "propertyUrl": "http://www.geonames.org/ontology{#_name}"
      }, {
        "name": "latitude",
        "datatype": "number"
      }, {
        "name": "longitude",
        "datatype": "number"
      }, {
        "name": "name",
        "datatype": "string"
      }],
      "aboutUrl": "http://example.org/countries.csv{#countryCode}",
      "propertyUrl": "http://schema.org/{_name}",
      "primaryKey": "countryCode"
    }
  }, {
    "url": "http://example.org/country_slice.csv",
    "tableSchema": {
      "columns": [{
        "name": "countryRef",
        "valueUrl": "http://example.org/countries.csv{#countryRef}"
      }, {
        "name": "year",
        "datatype": "gYear"
      }, {
        "name": "population",
        "datatype": "integer"
      }],
      "foreignKeys": [{
        "columnReference": "countryRef",
        "reference": {
          "resource": "http://example.org/countries.csv",
          "columnReference": "countryCode"
        }
      }]
    }
  }]
}

Within the annotated table generated for countries.csv, each row will have a primary key annotation whose value is a list containing the cell from the first column of that row (countryCode).

The annotated table generated for country_slice.csv will have a foreign keys annotation whose value is a list containing a single foreign key referencing the first column from the table generated from country_slice.csv (countryRef) and the first column from the table generated from countries.csv (countryCode). Each row within that table will have a referenced row annotation referencing this foreign key and the third row in the table generated from countries.csv.

When the population data in country_slice.csv is validated, the validator must check that every countryRef within country_slice.csv has a matching countryCode within countries.csv.

5.5.2.2 Foreign Key Reference Between Schemas

When publishing information about public sector roles and salaries, as in Use Case 4, the UK government requires departments to publish two files which are interlinked. The first lists senior grades (simplified here) e.g., at HEFCE_organogram_senior_data_31032011.csv:

Example 28
Post Unique Reference,              Name,Grade,             Job Title,Reports to Senior Post
                90115,        Steve Egan,SCS1A,Deputy Chief Executive,                 90334
                90250,     David Sweeney,SCS1A,              Director,                 90334
                90284,       Heather Fry,SCS1A,              Director,                 90334
                90334,Sir Alan Langlands, SCS4,       Chief Executive,                    xx

The second provides information about the number of junior positions that report to those individuals (simplified here) e.g., at HEFCE_organogram_junior_data_31032011.csv:

Example 29
Reporting Senior Post,Grade,Payscale Minimum (£),Payscale Maximum (£),Generic Job Title,Number of Posts in FTE,          Profession
                90284,    4,               17426,               20002,    Administrator,                     2,Operational Delivery
                90284,    5,               19546,               22478,    Administrator,                     1,Operational Delivery
                90115,    4,               17426,               20002,    Administrator,                  8.67,Operational Delivery
                90115,    5,               19546,               22478,    Administrator,                   0.5,Operational Delivery

The schemas are reused by multiple departments and for multiple pairs of files. The schemas are therefore defined in separate files, and they need to define links between the schemas which are then picked up as applying between tables that use those schemas.

The metadata file for the particular publication of the files above is:

Example 30
{
  "@context": "http://www.w3.org/ns/csvw",
  "tables": [{
    "url": "HEFCE_organogram_senior_data_31032011.csv",
    "tableSchema": "http://example.org/schema/senior-roles.json"
  }, {
    "url": "HEFCE_organogram_junior_data_31032011.csv",
    "tableSchema": "http://example.org/schema/junior-roles.json"
  }]
}

The schema for the senior role CSV (at http://example.org/schema/senior-roles.json) is as follows:

Example 31
{
  "@id": "http://example.org/schema/senior-roles.json",
  "@context": "http://www.w3.org/ns/csvw",
  "columns": [{
    "name": "ref",
    "titles": "Post Unique Reference"
  }, {
    "name": "name",
    "titles": "Name"
  }, {
    "name": "grade",
    "titles": "Grade"
  }, {
    "name": "job",
    "titles": "Job Title"
  }, {
    "name": "reportsTo",
    "titles": "Reports to Senior Post"
  }],
  "primaryKey": "ref"
}

The schema for the junior role CSV (at http://example.org/schema/junior-roles.json) is as follows; it includes a foreign key reference to the senior roles schema:

Example 32
{
  "@id": "http://example.org/schema/junior-roles.json",
  "@context": "http://www.w3.org/ns/csvw",
  "columns": [{
    "name": "reportsTo",
    "titles": "Reporting Senior Post"
  },
  ...
  ],
  "foreignKeys": [{
    "columnReference": "reportsTo",
    "reference": {
      "schemaReference": "http://example.org/schema/senior-roles.json",
      "columnReference": "ref"
    }
  }]
}

The foreign key definition here contains a schemaReference to senior-roles.json. Implementations will look for the table referenced within the original metadata file whose tableSchema is senior-roles.json, which is HEFCE_organogram_senior_data_31032011.csv. The implementation will therefore look for a relationship between the reportsTo column in HEFCE_organogram_junior_data_31032011.csv and the ref column in HEFCE_organogram_senior_data_31032011.csv.

For example, in the first line of HEFCE_organogram_junior_data_31032011.csv, the reportsTo (Reporting Senior Post) column contains the value 90284. When validating that file, validators will check that there is a single row within the table generated from HEFCE_organogram_senior_data_31032011.csv whose ref column contains the value 90284.

5.5.2.3 Weak Linking between Tables

Foreign key definitions provide for strong linking between tables that guarantees (through validation) the existance of a referenced row. It is also possible to provide weak linking between tables that are not tested by validations, but which may be useful when converting tabular data into other formats, using aboutUrl and valueUrl.

Taking the example above as a starting point, the schema for HEFCE_organogram_senior_data_31032011.csv could use aboutUrl to provide a URL for each row, which can similarly be created as a valueUrl for the reportsTo column:

Example 33
{
  "@id": "http://example.org/schema/senior-roles.json",
  "@context": "http://www.w3.org/ns/csvw",
  "aboutUrl": "#role-{ref}",
  "columns": [{
    "name": "ref",
    "titles": "Post Unique Reference"
  }, {
    "name": "name",
    "titles": "Name"
  }, {
    "name": "grade",
    "titles": "Grade"
  }, {
    "name": "job",
    "titles": "Job Title"
  }, {
    "name": "reportsTo",
    "titles": "Reports to Senior Post",
    "valueUrl": "#role-{reportsTo}"
  }],
  "primaryKey": "ref"
}

The URLs generated for the values of the reportsTo will (if the data is correct) match the URLs generated for each row within the table. There will be no validation error, however, if there is a value in the reportsTo column that does not match a value in the ref column. In contrast, if a foreign key had been specified with:

Example 34
"foreignKeys": [{
  "columnReference": "reportsTo",
  "reference": {
    "schemaReference": "http://example.org/schema/senior-roles.json",
    "columnReference": "ref"
  }
}]

then validators would raise an error if a value in the reportsTo column did not match any value in the ref column.

5.6 Columns

A column description is a JSON object that describes a single column. The description provides additional human-readable documentation for a column, as well as additional information that may be used to validate the cells within the column, create a user interface for data entry, or inform conversion into other formats. All properties are optional.

name

An atomic property that gives a single canonical name for the column. The value of this property becomes the name annotation for the described column. This MUST be a string and this property has no default value, which means it MUST be ignored if the supplied value is not a string.

For ease of reference within URI template properties, column names are restricted as defined in Variables in [URI-TEMPLATE] with the additional provision that names beginning with "_" are reserved by this specification and MUST NOT be used within metadata documents.

suppressOutput

A boolean atomic property. If true, suppresses any output that would be generated when converting cells in this column. The value of this property becomes the suppress output annotation for the described column. The default is false.

titles

A natural language property that provides possible alternative names for the column. The string values of this property, along with their associated language tags, become the titles annotation for the described column.

If there is no name property defined on this column, the first titles value having the same language tag as default language, or und or if no default language is specified, becomes the name annotation for the described column. This annotation MUST be percent-encoded as necessary to conform to the syntactic requirements defined in [RFC3986].

virtual

A boolean atomic property taking a single value which indicates whether the column is a virtual column not present in the original source. The default value is false. The normalized value of this property becomes the virtual annotation for the described column. If present, a virtual column MUST appear after all other non-virtual column definitions.

Note

Virtual columns are useful for inserting cells with default values into an annotated table to control the results of conversions.

@id

If included, @id is a link property that identifies the columns, as defined in [tabular-data-model], and potentially appearing across separate tables, described by this column description. It MUST NOT start with _:.

@type

If included, @type is an atomic property that MUST be set to "Column". Publishers MAY include this to provide additional information to JSON-LD based toolchains.

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.

The description MAY contain any common properties to provide extra metadata about the column as a whole, such as a full description.

The description MAY contain inherited properties to describe cells within the column.

5.6.1 Examples

This section is non-normative.

5.6.1.1 Use of virtual columns

Virtual columns are useful when data needs to be added as part of an output transformation that doesn't exist in the source file. This may be to add type information to a column, or to relate different columns having different aboutUrl. For example, the http://example.org/tree-ops.csv example used in the introduction can be used with the following metadata:

Example 35: http://example.org/tree-ops-virtual.json
{
  "url": "tree-ops.csv",
  "@context": ["http://www.w3.org/ns/csvw", {"@language": "en"}],
  "tableSchema": {
    "columns": [{
      "name": "GID",
      "titles": "GID",
      "datatype": "string",
      "propertyUrl": "schema:url",
      "valueUrl": "#gid-{GID}"
    }, {
      "name": "on_street",
      "titles": "On Street",
      "datatype": "string",
      "aboutUrl": "#location-{GID}",
      "propertyUrl": "schema:streetAddress"
    }, {
      "name": "species",
      "titles": "Species",
      "datatype": "string",
      "propertyUrl": "schema:name"
    }, {
      "name": "trim_cycle",
      "titles": "Trim Cycle",
      "datatype": "string"
    }, {
      "name": "inventory_date",
      "titles": "Inventory Date",
      "datatype": {"base": "date", "format": "M/d/yyyy"},
      "aboutUrl": "#event-{inventory_date}",
      "propertyUrl": "schema:startDate"
    }, {
      "propertyUrl": "schema:event",
      "valueUrl": "#event-{inventory_date}",
      "virtual": true
    }, {
      "propertyUrl": "schema:location",
      "valueUrl": "#location-{GID}",
      "virtual": true
    }, {
      "aboutUrl": "#location-{GID}",
      "propertyUrl": "rdf:type",
      "valueUrl": "schema:PostalAddress",
      "virtual": true
    }],
    "aboutUrl": "#gid-{GID}"
  }
}

This metadata creates a relationship model between data in each column by different combinations of aboutUrl, propertyUrl, and valueUrl on existing columns, and defining new virtual columns to supply additional information. In this case, the on_street and inventory_date values are split into separate entities, each having their own aboutUrl. New virtual columns are defined to provide a location type, and to relate the main row entity to the event and location associated with it. The result of converting the table to RDF would include the following, for the first row, with the contributions from the virtual columns highlighted:

Example 36
<#gid-1>
  schema:url <#gid-1> ;
  schema:name "Celtis australis" ;
  :trim_cycle "Large Tree Routine Prune" ;
  schema:event <#event-2010-10-18> ;
  schema:location <#location-1> ;
  .

<#event-1> a schema:Event ;
  schema:startDate "2010-10-18"^^xsd:date ;
  .

<#location-1> a schema:PostalAddress ;
  schema:streetAddress "ADDISON AV" ;
  .

The JSON would similarly include, again with the contributions from the virtual columns highlighted:

Example 37
{
  "@id": "#gid-1",
  "schema:url": "#gid-1",
  "schema:name": "Celtis australis",
  "trim_cycle": "Large Tree Routine Prune",
  "schema:event": {
    "@id": "#event-1",
    "@type": "schema:Event",
    "schema:startDate": "2010-10-18"
  },
  "schema:location": {
    "@id": "#location-1",
    "@type": "schema:PostalAddress",
    "schema:streetAddress": "ADDISON AV"
  }
}

5.7 Inherited Properties

Columns and cells may be assigned annotations based on properties on the description objects for groups of tables, tables, schemas, or columns. These properties are known as inherited properties and are listed below.

If an inherited property is not defined on a column description, it defaults to the first value, if any, found by looking through all of its containing objects: an inherited property defined in its containing schema description takes precedence over one defined in its containing table description, which in turn takes precedence of one defined in its containing table group description. This value is used to determine the value of the relevant annotation on the described column, which is then used to determine the value of the relevant annotation on the cells in that column.

aboutUrl

A URI template property that MAY be used to indicate what a cell contains information about. The value of this property becomes the about URL annotation for the described column and is used to create the value of the about URL annotation for the cells within that column as described in section 5.1.3 URI Template Properties.

Note

aboutUrl is typically defined on a schema description or table description to indicate what each row is about. If defined on individual column descriptions, care must be taken to ensure that transformed cell values maintain a semantic relationship.

datatype

An atomic property that contains either a single string that is the main datatype of the values of the cell or a datatype description object. If the value of this property is a string, it MUST be the name of one of the built-in datatypes defined in section 5.11.1 Built-in Datatypes and this value is normalized to an object whose base property is the original string value. If it is an object then it describes a more specialized datatype. If a cell contains a sequence (i.e. the separator property is specified and not null) then this property specifies the datatype of each value within that sequence. See 5.11 Datatypes and Parsing Cells in [tabular-data-model] for more details.

The normalized value of this property becomes the datatype annotation for the described column.

default

An atomic property holding a single string that is used to create a default value for the cell in cases where the original string value is an empty string. See Parsing Cells in [tabular-data-model] for more details. If not specified, the default for the default property is the empty string, "". The value of this property becomes the default annotation for the described column.

lang

An atomic property giving a single string language code as defined by [BCP47]. Indicates the language of the value within the cell. See Parsing Cells in [tabular-data-model] for more details. The value of this property becomes the lang annotation for the described column. The default is und.

null

An atomic property giving the string or strings used for null values within the data. If the string value of the cell is equal to any one of these values, the cell value is null. See Parsing Cells in [tabular-data-model] for more details. If not specified, the default for the null property is the empty string "". The value of this property becomes the null annotation for the described column.

ordered

A boolean atomic property taking a single value which indicates whether a list that is the value of the cell is ordered (if true) or unordered (if false). The default is false. This property is irrelevant if the separator is null or undefined, but this is not an error. The value of this property becomes the ordered annotation for the described column, and the ordered annotation for the cells within that column.

propertyUrl

A URI template property that MAY be used to create a URI for a property if the table is mapped to another format. The value of this property becomes the property URL annotation for the described column and is used to create the value of the property URL annotation for the cells within that column as described in section 5.1.3 URI Template Properties.

Note

propertyUrl is typically defined on a column description. If defined on a schema description, table description or table group description, care must be taken to ensure that transformed cell values maintain an appropriate semantic relationship, for example by including the name of the column in the generated URL by using _name in the template.

required

A boolean atomic property taking a single value which indicates whether the cell value can be null. See Parsing Cells in [tabular-data-model] for more details. The default is false, which means cells can have null values. The value of this property becomes the required annotation for the described column.

separator

An atomic property that MUST have a single string value that is the string used to separate items in the string value of the cell. If null (the default) or unspecified, the cell does not contain a list. Otherwise, application MUST split the string value of the cell on the specified separator and parse each of the resulting strings separately. The cell's value will then be a list. See Parsing Cells in [tabular-data-model] for more details. The value of this property becomes the separator annotation for the described column.

textDirection

An atomic property that MUST have a single string value that is one of "ltr", "rtl", "auto" or "inherit" (the default). Indicates whether the text within cells should be displayed as left-to-right text (ltr), as right-to-left text (rtl), according to the content of the cell (auto) or in the direction inherited from the table direction annotation of the table. The value of this property determines the text direction annotation for the column, and the text direction annotation for the cells within that column: if the value is inherit then the value of the text direction annotation is the value of the table direction annotation on the table, otherwise it is the value of this property. See Bidirectional Tables in [tabular-data-model] for details.

valueUrl

A URI template property that is used to map the values of cells into URLs. The value of this property becomes the value URL annotation for the described column and is used to create the value of the value URL annotation for the cells within that column as described in section 5.1.3 URI Template Properties.

Note

This allows processors to build URLs from cell values, for example to reference RDF resources, as defined in [rdf-concepts]. For example, if the value URL were "{#reference}", each cell value of a column named reference would be used to create a URI such as http://example.com/#1234, if 1234 were a cell value of that column.

Note

valueUrl is typically defined on a column description. If defined on a schema description, table description or table group description, care must be taken to ensure that transformed cell values maintain an appropriate semantic relationship.

5.7.1 Examples

This section is non-normative.

In the following example, aboutUrl property is defined on the tableSchema, and therefore affects all cells for that table.

Example 38: http://example.org/tree-ops.csv-metadata.json
{
  "@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}"
  }
}

The equivalent effect could be achieved by using the aboutUrl property on each column:

Example 39: http://example.org/tree-ops.csv-metadata.json
{
  "@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"],
      "aboutUrl": "#gid-{GID}",
      "dc:description": "An identifier for the operation on a tree.",
      "datatype": "string",
      "required": true
    }, {
      "name": "on_street",
      "titles": "On Street",
      "aboutUrl": "#gid-{GID}",
      "dc:description": "The street that the tree is on.",
      "datatype": "string"
    }, {
      "name": "species",
      "titles": "Species",
      "aboutUrl": "#gid-{GID}",
      "dc:description": "The species of the tree.",
      "datatype": "string"
    }, {
      "name": "trim_cycle",
      "titles": "Trim Cycle",
      "aboutUrl": "#gid-{GID}",
      "dc:description": "The operation performed on the tree.",
      "datatype": "string"
    }, {
      "name": "inventory_date",
      "titles": "Inventory Date",
      "aboutUrl": "#gid-{GID}",
      "dc:description": "The date of the operation that was performed.",
      "datatype": {"base": "date", "format": "M/d/yyyy"}
    }],
    "primaryKey": "GID"
  }
}

5.8 Common Properties

Descriptions of groups of tables, tables, schemas and columns MAY contain any common properties whose names are either absolute URLs or prefixed names. For example, a table description may contain dc:description, dcat:keyword, or schema:copyrightHolder properties to provide a description, keywords, or the name of the copyright holder, as defined in Dublin Core Terms, DCAT, or schema.org.

5.8.1 Names of Common Properties

The names of common properties are prefixed names, in the syntax prefix:name.

Prefixed names can be expanded to provide a URI, by replacing the prefix and following colon with the URI that the prefix is associated with. Expansion is intended to be entirely consistent with Section 6.3 IRI Expansion in [JSON-LD-API] and implementations MAY use a JSON-LD processor for performing prefixed name and IRI expansion.

The prefixes that are recognized are those defined for [rdfa-core] within the RDFa 1.1 Initial Context and other prefixes defined within [csvw-context] and these MUST NOT be overridden. These prefixes are periodically extended; refer to [csvw-context] for details. Properties from other vocabularies MUST be named using absolute URLs.

Note

Forbidding the declaration of new prefixes ensures consistent processing between JSON-LD-aware and non-JSON-LD-aware processors.

This specification does not define how common properties are interpreted by implementations. Implementations SHOULD treat the prefixed names for common properties and the URLs that they expand into in the same way. For example, if an implementation recognises and displays the value of the dc:description property, it should also recognise and display the value of the http://purl.org/dc/terms/description property in the same way.

5.8.2 Values of Common Properties

Common properties can take any JSON value, so long as any objects within the value (for example as items of an array or values of properties on other objects) adhere to the following restrictions, which are designed to ensure compatibility between JSON-LD-aware and non-JSON-LD-aware processors:

  • If a @value property is used on an object, that object MUST NOT have any other properties aside from either @type or @language, and MUST NOT have both @type and @language as properties. The value of the @value property MUST be a string, number, or boolean value.

    If @type is also used, its value MUST be one of:

    If a @language property is used, it MUST have a string value that adheres to the syntax defined in [BCP47], or be null.

  • If a @type property is used on an object without a @value property, its value MUST be one of:

    • one of the legitimate values for @type as defined for any of the description objects in this specification.
    • a prefixed name using any of the pre-defined prefixes as described in section 5.8.1 Names of Common Properties.
    • a string, which MUST be interpreted as an absolute URL.

    A @type property can also have a value that is an array of such values.

  • The values of @id properties are link properties and are treated as URLs. During normalization, as described in section 6. Normalization, they will have any prefix expanded and the result resolved against the base URL. Therefore, if an @id property is used on an object, it MUST have a value that is a string and that string MUST NOT start with _:.

  • A @language property MUST NOT be used on an object unless it also has a @value property.

  • Aside from @value, @type, @language, and @id, the properties used on an object MUST NOT start with @.

These restrictions are also described in section A. JSON-LD Dialect, from the perspective of a processor that otherwise supports JSON-LD. Examples of common property values and the impact of normalization are given in section 6.1 Examples.

5.9 Dialect Descriptions

Much of the tabular data that is published on the web is messy, and CSV parsers frequently need to be configured in order to correctly read in CSV. A dialect description provides hints to parsers about how to parse the file linked to from the url property in a table description. It can have any of the following properties, which relate to the flags described in Section 5 Parsing Tabular Data within the [tabular-data-model]:

commentPrefix

An atomic property that sets the comment prefix flag to the single provided value, which MUST be a string. The default is "#".

delimiter

An atomic property that sets the delimiter flag to the single provided value, which MUST be a string. The default is ",".

doubleQuote

A boolean atomic property that, if true, sets the escape character flag to ". If false, to \. The default is true.

encoding

An atomic property that sets the encoding flag to the single provided string value, which MUST be a defined in [encoding]. The default is "utf-8".

header

A boolean atomic property that, if true, sets the header row count flag to 1, and if false to 0, unless headerRowCount is provided, in which case the value provided for the header property is ignored. The default is true.

headerRowCount

A numeric atomic property that sets the header row count flag to the single provided value, which MUST be a non-negative integer. The default is 1.

lineTerminators

An atomic property that sets the line terminators flag to either an array containing the single provided string value, or the provided array. The default is ["\r\n", "\n"].

quoteChar

An atomic property that sets the quote character flag to the single provided value, which MUST be a string or null. If the value is null, the escape character flag is also set to null. The default is '"'.

skipBlankRows

A boolean atomic property that sets the skip blank rows flag to the single provided boolean value. The default is false.

skipColumns

A numeric atomic property that sets the skip columns flag to the single provided numeric value, which MUST be a non-negative integer. The default is 0.

skipInitialSpace

A boolean atomic property that, if true, sets the trim flag to "start" and if false, to false. If the trim property is provided, the skipInitialSpace property is ignored. The default is false.

skipRows

A numeric atomic property that sets the skip rows flag to the single provided numeric value, which MUST be a non-negative integer. The default is 0.

trim

An atomic property that, if the boolean true, sets the trim flag to true and if the boolean false to false. If the value provided is a string, sets the trim flag to the provided value, which MUST be one of "true", "false", "start", or "end". The default is true.

@id

If included, @id is a link property that identifies the dialect described by this dialect description. It MUST NOT start with _:.

@type

If included, @type is an atomic property that MUST be set to "Dialect". Publishers MAY include this to provide additional information to JSON-LD based toolchains.

Note

Dialect descriptions do not provide a mechanism for handling CSV files in which there are multiple tables within a single file (e.g. separated by empty lines).

The default dialect description for CSV files is:

{
  "encoding": "utf-8",
  "lineTerminators": ["\r\n", "\n"],
  "quoteChar": "\"",
  "doubleQuote": true,
  "skipRows": 0,
  "commentPrefix": "#",
  "header": true,
  "headerRowCount": 1,
  "delimiter": ",",
  "skipColumns": 0,
  "skipBlankRows": false,
  "skipInitialSpace": false,
  "trim": false
}

5.10 Transformation Definitions

A transformation definition is a definition of how tabular data can be transformed into another format using a script or template.

For example, the following transformation definition will enable a processor that supports it to generate an iCalendar document using a Mustache template based on the JSON created from the simple mapping to JSON.

Example 40
{
"url": "templates/ical.txt",
"titles": "iCalendar",
"targetFormat": "http://www.iana.org/assignments/media-types/text/calendar",
"scriptFormat": "https://mustache.github.io/",
"source": "json"
}

A processor that recognises templates in the Mustache format indicated by "https://mustache.github.io/" and that could convert tables into JSON based on [csv2json] would retrieve the template from "templates/ical.txt" and apply this to the resulting JSON.

Transformation definitions have the following properties:

5.10.1 Required Properties

Transformation definitions MUST have the following properties:

url

A link property giving the single URL of the file that the script or template is held in, relative to the location of the metadata document.

scriptFormat

A link property giving the single URL for the format that is used by the script or template. If one has been defined, this should be a URL for a media type, in the form http://www.iana.org/assignments/media-types/media-type such as http://www.iana.org/assignments/media-types/application/javascript. Otherwise, it can be any URL that describes the script or template format.

Note

The scriptFormat URL is intended as an informative identifier for the template format, and applications SHOULD NOT access the URL. The template formats that an application supports are implementation defined.

targetFormat

A link property giving the single URL for the format that will be created through the transformation. If one has been defined, this should be a URL for a media type, in the form http://www.iana.org/assignments/media-types/media-type such as http://www.iana.org/assignments/media-types/text/calendar. Otherwise, it can be any URL that describes the target format.

Note

The targetFormat URL is intended as an informative identifier for the target format, and applications SHOULD NOT access the URL.

5.10.2 Optional Properties

Transformation definitions MAY have the following properties:

source

A single string atomic property that provides, if specified, the format to which the tabular data should be transformed prior to the transformation using the script or template. If the value is json, the tabular data MUST first be transformed to JSON as defined by [csv2json] using standard mode. If the value is rdf, the tabular data MUST first be transformed to an RDF graph as defined by [csv2rdf] using standard mode. If the source property is missing or null (the default) then the source of the transformation is the annotated tabular data model. No other values are valid; applications MUST generate a warning and behave as if the property had not been specified.

titles

A natural language property that describes the format that will be generated from the transformation. This is useful if the target format is a generic format (such as application/json) and the transformation is creating a specific profile of that format.

@id

If included, @id is a link property that identifies the transformation described by this transformation definition. It MUST NOT start with _:.

@type

If included, @type is an atomic property that MUST be set to "Template". Publishers MAY include this to provide additional information to JSON-LD based toolchains.

The transformation definition MAY contain any common properties to provide extra metadata about the transformation.

5.10.3 Processing Transformation Definitions

Implementations MAY present users with options for transformations based on the available transformation definitions and their properties. Implementations SHOULD filter this list to only include those transformations whose scriptFormat they understand and can apply, and whose source property, if present, specifies a format that the implementation can convert to. Users may find the targetFormat and titles properties useful in deciding which transformation to apply.

When directed by a user to transform a table using a transformation definition, implementations MUST:

  1. Convert the table to the format specified by the source property, if this is specified and not null.
  2. Fetch the script or template from the location specified by the url property and raise an error if this does not exist.
  3. Use the scriptFormat property to determine how to interpret that script or template, and apply it to the table (or the result of converting the table).

5.11 Datatypes

Cells within tables may be annotated with a datatype which indicates the type of the values obtained by parsing the string value of the cell. See [tabular-data-model] for a description of annotations on a datatype.

5.11.1 Built-in Datatypes

The possible built-in datatypes, as shown on the diagram, are:

  • the datatypes defined in [xmlschema11-2] as derived from and including anyAtomicType, whose identifier URLs are generated by prefixing the name with http://www.w3.org/2001/XMLSchema#.
  • the datatype number whose identifier URL is http://www.w3.org/2001/XMLSchema#double.
  • the datatype binary whose identifier URL is http://www.w3.org/2001/XMLSchema#base64Binary.
  • the datatype datetime whose identifier URL is http://www.w3.org/2001/XMLSchema#dateTime.
  • the datatype any whose identifier URL is http://www.w3.org/2001/XMLSchema#anyAtomicType.
  • the datatype xml, a sub-type of string, whose identifier URL is http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral and which indicates the value is an XML fragment.
  • the datatype html, a sub-type of string, whose identifier URL is http://www.w3.org/1999/02/22-rdf-syntax-ns#HTML and which indicates the value is an HTML fragment.
  • the datatype json, a sub-type of string, whose identifier URL is http://www.w3.org/ns/csvw#JSON and which indicates the value is serialized JSON.
Built-in Datatype Hierarchy diagram
Fig. 2 Diagram showing the built-in datatypes, based on [xmlschema11-2]; names in parentheses denote aliases to the [xmlschema11-2] terms (see the diagram in SVG or PNG formats)

5.11.2 Derived Datatypes

More specialized datatypes can be defined through a datatype description. A datatype description may have any of the following properties, all of which are optional.

base

An atomic property that contains a single string: the name of one of the built-in datatypes, as listed above (and which are defined as terms in the default context). Its default is string. All values of the datatype MUST be valid values of the base datatype. The value of this property becomes the base annotation for the described datatype.

format

An atomic property that contains either a single string or an object that defines the format of a value of this type, used when parsing a string value as described in Parsing Cells in [tabular-data-model]. The value of this property becomes the format annotation for the described datatype.

length

A numeric atomic property that contains a single integer that is the exact length of the value. The value of this property becomes the length annotation for the described datatype. See Length Constraints in [tabular-data-model] for details.

minLength

An atomic property that contains a single integer that is the minimum length of the value. The value of this property becomes the minimum length annotation for the described datatype. See Length Constraints in [tabular-data-model] for details.

maxLength

A numeric atomic property that contains a single integer that is the maximum length of the value. The value of this property becomes the maximum length annotation for the described datatype. See Length Constraints in [tabular-data-model] for details.

minimum

An atomic property that contains a single number or string that is the minimum valid value (inclusive); equivalent to minInclusive. The value of this property becomes the minimum annotation for the described datatype. See Value Constraints in [tabular-data-model] for details.

maximum

An atomic property that contains a single number or string that is the maximum valid value (inclusive); equivalent to maxInclusive. The value of this property becomes the maximum annotation for the described datatype. See Value Constraints in [tabular-data-model] for details.

minInclusive

An atomic property that contains a single number or string that is the minimum valid value (inclusive). The value of this property becomes the minimum annotation for the described datatype. See Value Constraints in [tabular-data-model] for details.

maxInclusive

An atomic property that contains a single number or string that is the maximum valid value (inclusive). The value of this property becomes the maximum annotation for the described datatype. See Value Constraints in [tabular-data-model] for details.

minExclusive

An atomic property that contains a single number or string that is the minimum valid value (exclusive). The value of this property becomes the minimum exclusive annotation for the described datatype. See Value Constraints in [tabular-data-model] for details.

maxExclusive

An atomic property that contains a single number or string that is the maximum valid value (exclusive). The value of this property becomes the maximum exclusive annotation for the described datatype. See Value Constraints in [tabular-data-model] for details.

@id

If included, @id is a link property that identifies the datatype described by this datatype description. The value of this property becomes the id annotation for the described datatype. It MUST NOT start with _: and it MUST NOT be the URL of a built-in datatype.

@type

If included, @type is an atomic property that MUST be set to "Datatype". Publishers MAY include this to provide additional information to JSON-LD based toolchains.

The datatype description MAY contain any common properties to provide extra metadata about the datatype, such as a title or description.

Applications MUST raise an error if the @id property has the value of a built-in datatype and any other property is specified. In these cases, the other properties are ignored.

Applications MUST raise an error if both length and minLength are specified and length is less than minLength. Similarly, applications MUST raise an error if both length and maxLength are specified and length is greater than maxLength. Applications MUST raise an error if minLength and maxLength are both specified and minLength is greater than maxLength. Applications MUST raise an error if length, maxLength, or minLength are specified and the base datatype is neither string, a subtype of string, nor a binary type.

In all ways, including the errors described below, the minimum property is equivalent to the minInclusive property and the maximum property is equivalent to the maxInclusive property. Applications MUST raise an error if both minimum and minInclusive are specified and they do not have the same value. Similarly, applications MUST raise an error if both maximum and maxInclusive are specified and they do not have the same value.

Applications MUST raise an error if both minInclusive and minExclusive are specified, or if both maxInclusive and maxExclusive are specified. Applications MUST raise an error if both minInclusive and maxInclusive are specified and maxInclusive is less than minInclusive, or if both minInclusive and maxExclusive are specified and maxExclusive is less than or equal to minInclusive. Similarly, applications MUST raise an error if both minExclusive and maxExclusive are specified and maxExclusive is less than minExclusive, or if both minExclusive and maxInclusive are specified and maxInclusive is less than or equal to minExclusive.

Applications MUST raise an error if minimum, minInclusive, maximum, maxInclusive, minExclusive, or maxExclusive are specified and the base datatype is not a numeric, date/time, or duration type.

Validation against these properties is as defined in [xmlschema11-2].

Note

The format property is not used when interpreting values for the minimum, maximum, minInclusive, maxInclusive, minExclusive, or maxExclusive values. If these values are strings, they must be specified using a valid representation appropriate for the datatype base as defined in [xmlschema11-2]. For example:

{
  "datatype": "date",
  "format": "dd/MM/yyyy",
  "minimum": "2000-01-01"
}
            

6. Normalization

A description object is normalized as follows:

  1. If the property is a common property or notes the value MUST be normalized as follows:
    1. If the value is an array, each value within the array is normalized in place as described here.
    2. If the value is a string, replace it with an object with a @value property whose value is that string. If a default language is specified, add a @language property whose value is that default language.
    3. If the value is an object with a @value property, it remains as is.
    4. If the value is any other object, normalize each property of that object as follows:
      1. If the property is @id, expand any prefixed names and resolve its value against the base URL.
      2. If the property is @type, then its value remains as is.
      3. Otherwise, normalize the value of the property as if it were a common property, according to this algorithm.
    5. Otherwise, the value remains as is.
  2. If the property is an array property each element of the value is normalized using this algorithm.
  3. If the property is a link property the value is turned into an absolute URL using the base URL and normalized as described in URL Normalization [tabular-data-model].
  4. If the property is an object property with a string value, the string is a URL referencing a JSON document containing a single object. Fetch this URL to retrieve an object, which may have a local @context. Normalize each property in the resulting object recursively using this algorithm and with its local @context then remove the local @context property. If the resulting object does not have an @id property, add an @id whose value is the original URL. This object becomes the value of the original object property.
  5. If the property is an object property with an object value, normalize each property recursively using this algorithm.
  6. If the property is a natural language property and the value is not already an object, it is turned into an object whose properties are language codes and where the values of those properties are arrays. The suitable language code for the values is determined through the default language; if it can't be determined the language code und MUST be used.
  7. If the property is an atomic property that can be a string or an object, normalize to the object form as described for that property.

Following this normalization process, the @base and @language properties within the @context are no longer relevant; the normalized metadata can have its @context set to http://www.w3.org/ns/csvw.

6.1 Examples

This section is non-normative.

The following are examples of how common properties are normalized.

In this example, a simple string is used as the title for a table using the dc:title common property:

Example 41: Giving a title to a Table
{
  "@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"
}

Since there is a default language, this is equivalent to explicitly specifying the language of that title; the original string value becomes the value of the @value property within a value object:

Example 42: Giving a title to a Table
{
  "@type": "Table",
  "url": "http://example.com/table.csv",
  "tableSchema": [...],
  "dc:title": {"@value": "The title of this Table", "@language": "en"}
}

It is also possible to use a simple value object to give a title. However, in this case the default language is not applied to the title:

Example 43: Giving a label to a Table
{
  "@context": { "http://www.w3.org/ns/csvw", { "@language": "en" } },
  "@type": "Table",
  "url": "http://example.com/table.csv",
  "tableSchema": [...],
  "dc:title": {"@value": "The title of this Table"}
}

The next example uses an array of a string and a value object to give two titles with different languages:

Example 44: Giving a title to a Table
{
  "@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",
    {"@value": "Der Titel dieser Tabelle", "@language": "de"}
  ]
}

The normalized version of this is:

Example 45: Giving a title to a Table
{
  "@type": "Table",
  "url": "http://example.com/table.csv",
  "tableSchema": [...],
  "dc:title": [
    {"@value": "The title of this Table", "@language": "en"}
    {"@value": "Der Titel dieser Tabelle", "@language": "de"}
  ]
}

The next example demonstrates a node object, in which the value of the schema:url property is a reference to another resource:

Example 46: Referencing a URL
{
  "@context": [ "http://www.w3.org/ns/csvw", { "@base": "http://example.com/" } ],
  "@type": "Table",
  "url": "table.csv",
  "tableSchema": [...],
  "schema:url": {"@id": "table.csv"}
}

The value of the @id property is normalized as described in section 6. Normalization against the base URL provided through the @base property, which means the above example is equivalent to:

Example 47: Referencing a URL
{
  "@context": "http://www.w3.org/ns/csvw",
  "@type": "Table",
  "url": "http://example.com/table.csv",
  "tableSchema": [...],
  "schema:url": {"@id": "http://example.com/table.csv"}
}

The following example shows the dc:publisher property as an array that contains a single node object:

Example 48: Embedded object
{
  "@context": "http://www.w3.org/ns/csvw",
  "@type": "Table",
  "url": "http://example.com/table.csv",
  "tableSchema": [...],
  "dc:publisher": [{
    "schema:name": "Example Municipality",
    "schema:url": {"@id": "http://example.org"}
  }],
}

Following normalization, the schema:name property of the dc:publisher is expanded as shown:

Example 49: Normalized embedded object
"dc:publisher": [{
  "schema:name": { "@value": "Example Municipality" },
  "schema:url": { "@id": "http://example.org" }
}]

7. Security Considerations

Applications that process tabular data may use that data to drive other actions, which may have security implications. These behaviors are outside the scope of this specification.

Third party metadata provided about a tabular data file (such as a CSV file) may rename or ignore headers, or exclude rows or columns, which may lead to data being misinterpreted by applications that process it.

Transformation definitions are a possible security risk as they enable the creators of metadata to reference arbitrary code that may be executed to convert tabular data into other formats. Implementations should run this arbitrary code in a sandboxed environment to reduce the security risk.

A. JSON-LD Dialect

The Metadata Vocabulary for Tabular Data uses a format based on JSON-LD [JSON-LD] with some restrictions.

A.1 URL Compaction

When normalizing metadata, prefixed names used in common properties and notes are expanded to absolute URLs. For some serializations, these are more appropriately presented using prefixed names or terms. This algorithm compacts an absolute URL to a prefixed name or term.

  1. If the URL exactly matches the absolute IRI associated with a term in [csvw-context], replace the URL with that term.
  2. Otherwise, if the URL starts with the absolute IRI associated with a term in [csvw-context], replace the matched part of that URL with the term separated with a : (U+0040) to create a prefixed name. If the resulting prefixed name is rdf:type, replace with @type.

B. Acknowledgements

This document is influenced by Data Package specification and the JSON Table Schema, which are maintained as part of Data Protocols. Particular contributors to that work are Rufus Pollock, Paul Fitzpatrick, Andrew Berkeley, Francis Irving, Benoit Chesneau, Leigh Dodds, Martin Keegan, and Gunnlaugur Thor Briem.

At the time of publication, the following individuals had participated in the Working Group, in the order of their first name: Adam Retter, Alf Eaton, Anastasia Dimou, Andy Seaborne, Axel Polleres, Christopher Gutteridge, Dan Brickley, Davide Ceolin, Eric Stephan, Erik Mannens, Gregg Kellogg, Ivan Herman, Jeni Tennison, Jeremy Tandy, Jürgen Umbrich, Rufus Pollock, Stasinos Konstantopoulos, William Ingram, and Yakov Shafranovich.

C. IANA Considerations

application/csvm+json
Type name:
application
Subtype name:
csvm+json
Required parameters:
N/A
Optional parameters:
N/A
Encoding considerations:
Binary, as per [RFC6839], section 3.1; the charset parameter is not used and byte-order marks are not permitted, as per [RFC7159], sections 11 and 8.1
Security considerations:
See [RFC7159] section 12 and section 7. Security Considerations of this specification
Interoperability considerations:
Note that this format is not the same as the existing text/csv and text/tab-delimited-values media types, but a JSON-based format used to annotate such documents. Also see [RFC7159] for interoperability information for JSON.
Published specification:
This specification.
Applications that use this media type:
It is anticipated that there is a broad need for data validators and converters to alternate structured representations of tabular data. It is expected that many applications and programming languages will be using this media type across many operating systems.
Fragment identifier considerations:
See [RFC6839], section 3.1
Additional information:
Magic number(s):
None.

Although no byte sequence can be guaranteed at a specific location, a valid application/csvm+json document MUST somewhere contain the string "@context" (including quotation characters), followed by one or more whitespace, colon or open-square-bracket characters, followed by the string "http://www.w3.org/ns/csvw" (including quotation characters).

File extension(s):
".json"
Macintosh file type code(s):
"TEXT"
Macintosh Universal Type Identifier code:
org.w3c.csvm conforms to public.json
Windows Clipboard Name
Tabular Metadata in JSON
Person & email address to contact for further information:
Ivan Herman <ivan@w3.org>
Intended usage:
COMMON
Restrictions on usage:
None
Author/Change controller:
The Tabular metadata specification is the product of the CSV on the Web Working Group. The W3C reserves change control over this specification.

D. JSON-LD Context

The JSON-LD context, located at http://www.w3.org/ns/csvw.jsonld is used with metadata documents. When used within a metadata document, the context can be referenced as http://www.w3.org/ns/csvw. See [csvw-context] for a full description of defined terms and prefixes. This context may be updated from time-to-time to define new terms and prefixes.

Note

A JSON-LD processor retrieving the context will use content negotiation to request the resource at http://www.w3.org/ns/csvw with an Accept: application/ld+json HTTP header as defined in Remote Document and Context Retrieval in [JSON-LD-API]. Without this header, this resource will return an HTML representation of the csvw namespace. All serializations of this resource also define the metadata vocabulary using RDFS.

E. Changes from previous drafts

E.1 Changes since the candidate recommendation of 16 July 2015

E.2 Changes since the working draft of 16 April 2015

E.3 Changes since the working draft of 08 January 2015

The document has undergone substantial changes since the last working draft. Below are some of the changes made:

F. References

F.1 Normative references

[BCP47]
A. Phillips; M. Davis. Tags for Identifying Languages. September 2009. IETF Best Current Practice. URL: https://tools.ietf.org/html/bcp47
[JSON-LD]
Manu Sporny; Gregg Kellogg; Markus Lanthaler. JSON-LD 1.0. 16 January 2014. W3C Recommendation. URL: http://www.w3.org/TR/json-ld/
[JSON-LD-API]
Markus Lanthaler; Gregg Kellogg; Manu Sporny. JSON-LD 1.0 Processing Algorithms and API. 16 January 2014. W3C Recommendation. URL: http://www.w3.org/TR/json-ld-api/
[RFC2119]
S. Bradner. Key words for use in RFCs to Indicate Requirement Levels. March 1997. Best Current Practice. URL: https://tools.ietf.org/html/rfc2119
[RFC3986]
T. Berners-Lee; R. Fielding; L. Masinter. Uniform Resource Identifier (URI): Generic Syntax. January 2005. Internet Standard. URL: https://tools.ietf.org/html/rfc3986
[RFC7159]
T. Bray, Ed.. The JavaScript Object Notation (JSON) Data Interchange Format. March 2014. Proposed Standard. URL: https://tools.ietf.org/html/rfc7159
[URI-TEMPLATE]
J. Gregorio; R. Fielding; M. Hadley; M. Nottingham; D. Orchard. URI Template. March 2012. Proposed Standard. URL: https://tools.ietf.org/html/rfc6570
[csv2json]
Jeremy Tandy; Ivan Herman. Generating JSON from Tabular Data on the Web. W3C Recommendation. URL: http://www.w3.org/TR/2015/REC-csv2json-20151217/
[csv2rdf]
Jeremy Tandy; Ivan Herman; Gregg Kellogg. Generating RDF from Tabular Data on the Web. W3C Recommendation. URL: http://www.w3.org/TR/2015/REC-csv2rdf-20151217/
[encoding]
Anne van Kesteren; Joshua Bell; Addison Phillips. Encoding. 20 October 2015. W3C Candidate Recommendation. URL: http://www.w3.org/TR/encoding/
[tabular-data-model]
Jeni Tennison; Gregg Kellogg. Model for Tabular Data and Metadata on the Web. W3C Recommendation. URL: http://www.w3.org/TR/2015/REC-tabular-data-model-20151217/
[xmlschema11-2]
David Peterson; Sandy Gao; Ashok Malhotra; Michael Sperberg-McQueen; Henry Thompson; Paul V. Biron et al. W3C XML Schema Definition Language (XSD) 1.1 Part 2: Datatypes. 5 April 2012. W3C Recommendation. URL: http://www.w3.org/TR/xmlschema11-2/

F.2 Informative references

[RFC6839]
T. Hansen; A. Melnikov. Additional Media Type Structured Syntax Suffixes. January 2013. Informational. URL: https://tools.ietf.org/html/rfc6839
[csvw-context]
Gregg Kellogg. Metadata Vocabulary for Tabular Data. URL: http://www.w3.org/ns/csvw
[rdf-concepts]
Graham Klyne; Jeremy Carroll. Resource Description Framework (RDF): Concepts and Abstract Syntax. 10 February 2004. W3C Recommendation. URL: http://www.w3.org/TR/rdf-concepts/
[rdfa-core]
Ben Adida; Mark Birbeck; Shane McCarron; Ivan Herman et al. RDFa Core 1.1 - Third Edition. 17 March 2015. W3C Recommendation. URL: http://www.w3.org/TR/rdfa-core/