├── .eslintrc ├── .github ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── LEAD.md ├── LICENSE ├── Makefile ├── README.md ├── package.json ├── scripts ├── index.js └── schema.json └── spec.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/.travis.yml -------------------------------------------------------------------------------- /LEAD.md: -------------------------------------------------------------------------------- 1 | roll 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/package.json -------------------------------------------------------------------------------- /scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/scripts/index.js -------------------------------------------------------------------------------- /scripts/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/scripts/schema.json -------------------------------------------------------------------------------- /spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/data-quality-spec/HEAD/spec.json --------------------------------------------------------------------------------