specs
specs copied to clipboard
Technical specifications and guidelines for implementing Frictionless Data.
[sources](https://specs.frictionlessdata.io/data-package/#sources) currently have the properties: - `title` - `path` - `email` Is it possible to extend that with `version` as part of the Data Package specs? ```json "version": "Version of...
The example on https://specs.frictionlessdata.io/tabular-data-package/#example is currently not valid, because the resource is missing a `name` property. I added one called `data` (after `data.csv`), and order the terms as: - profile...
In addition to the property `rdfType`, which specifies the type of the referenced item, I suggest defining a new property `rdfProperty`, which specifies the meaning of the field: For example...
Data Package contributors can have a `role` property: https://specs.frictionlessdata.io/data-package/#contributors ``` "contributors": [{ "title": "Joe Bloggs", "email": "[email protected]", "path": "http://www.bloggs.com", "role": "author" }] ``` However, how does one indicate a contributor...
It's a live thread capturing updates and proposals. Will be reported in https://github.com/frictionlessdata/specs/issues/853 when finished
# Overview It's a meta issue that includes these issues: - https://github.com/frictionlessdata/specs/issues/689 - https://github.com/frictionlessdata/specs/issues/444 - https://github.com/frictionlessdata/specs/issues/743 - https://github.com/frictionlessdata/specs/issues/887 All of them are very coupled and hopefully will be resolved by...
# Overview Currently, in some places, it references XML Schema with additional text duplicating the definition. In some places, it just references a whole type (not the lexical representation). It...
# Overview This paragraph - https://datapackage.org/specifications/table-schema/#physical-and-logical-representation I think `physical` term might be confusing (see #621) as it seems to be really meaning `lexical` or `textual` while `logical` sounds easy to...
Currently, implementations have only one way to identify a resource type -- checking if `profile: tabular-data-resource`. But Tabular Data Resource can have a profile set to URL; it also can...
Presently, missing values (whether specified at a [schema-level](https://specs.frictionlessdata.io/table-schema/#missing-values) or [field-level](https://github.com/frictionlessdata/datapackage/pull/24)) are specified using their physical values. It is not uncommon for these physical missing values to represent logical *reasons* for...