datasets / gdp

Country, regional and world GDP in current US Dollars ($)
https://datahub.io/core/gdp
72 stars 57 forks source link

Not compatible with latest JSON Table Schema #5

Open Hypercubed opened 8 years ago

Hypercubed commented 8 years ago

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 commented 8 years ago

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

rufuspollock commented 8 years ago

@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.