gdp icon indicating copy to clipboard operation
gdp copied to clipboard

Not compatible with latest JSON Table Schema

Open Hypercubed opened this issue 9 years ago • 2 comments

Am I correct that "year" field in the data package is not compatible with the latest JSON Table Schema?

The current value is:

          {
            "name": "Year",
            "type": "date",
            "format": "yyyy"
          },

should be:

          {
            "name": "Year",
            "type": "date",
            "format": "fmt:%y"
          },

or:

          {
            "name": "Year",
            "type": "date",
            "format": "any"
          },

Hypercubed avatar Aug 09 '16 02:08 Hypercubed

Just noticed https://github.com/frictionlessdata/specs/issues/260.

Hypercubed avatar Aug 09 '16 03:08 Hypercubed

@Hypercubed you are correct and we should modify this though as you note there is a likely upcoming minor change to how we handle this.

rufuspollock avatar Aug 09 '16 08:08 rufuspollock