Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CHANGELOG anchors to $schema + indicate what happened to tabular-data-package/resource #960

Merged
merged 7 commits into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions content/docs/overview/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,43 +12,47 @@ This document includes all meaningful changes made to the **Data Package standar

##### `package.$schema` (new)

[`$schema`](/standard/glossary/#profile) replaced `profile` property with new extensions semantics ([#42](https://github.com/frictionlessdata/datapackage-v2-draft/pull/42)).
[`$schema`](/standard/data-package/#dollar-schema) replaces the `profile` property and allows easier extension and versioning ([#42](https://github.com/frictionlessdata/datapackage-v2-draft/pull/42)).

##### Tabular Data Package (removed)

The [Tabular Data Package](https://specs.frictionlessdata.io/tabular-data-package/) (`$package.profile: "tabular-data-package"`) is removed. It did not add any benefits over defining `$resource.profile: "tabular-data-resource"` for its resources, which is more modular ([#52](https://github.com/frictionlessdata/datapackage-v2-draft/pull/52)).

##### `resource.$schema` (new)

[`$schema`](/standard/glossary/#profile) replaced `profile` property with new extensions semantics ([#42](https://github.com/frictionlessdata/datapackage-v2-draft/pull/42)).
[`$schema`](/standard/data-resource/#dollar-schema) replaces the `profile` property and allows easier extension and versioning ([#42](https://github.com/frictionlessdata/datapackage-v2-draft/pull/42)). See also [resource.type](#resource-type-new).

##### `resource.sources` (updated)

[`sources`](/standard/resource/#sources) now inherits from a containing data package ([#57](https://github.com/frictionlessdata/datapackage-v2-draft/pull/57)).
[`sources`](/standard/data-resource/#sources) now inherits from a containing data package ([#57](https://github.com/frictionlessdata/datapackage-v2-draft/pull/57)).

##### `resource.type` (new)

[`type`](/standard/data-resource/#type) allows to specify the resource type ([#51](https://github.com/frictionlessdata/datapackage-v2-draft/pull/51)).
[`type`](/standard/data-resource/#type) allows to specify the resource type ([#51](https://github.com/frictionlessdata/datapackage-v2-draft/pull/51)). `resource.type: "table"` replaces `resource.profile: "tabular-data-resource"`.

##### `dialect.$schema` (new)

[`$schema`](/standard/glossary/#profile) replaced `profile` property with new extensions semantics ([#42](https://github.com/frictionlessdata/datapackage-v2-draft/pull/42)).
[`$schema`](/standard/table-dialect/#dollar-schema) allows extension and versioning ([#42](https://github.com/frictionlessdata/datapackage-v2-draft/pull/42)).

##### `dialect.table` (new)

[`table`](/standard/table-dialect/#table) allows to specify a table in a database ([#64](https://github.com/frictionlessdata/datapackage-v2-draft/pull/64)).

##### `schema.$schema` (new)

[`$schema`](/standard/glossary/#profile) replaced `profile` property with new extensions semantics ([#42](https://github.com/frictionlessdata/datapackage-v2-draft/pull/42)).
[`$schema`](/standard/table-schema/#dollar-schema) allows extension and versioning ([#42](https://github.com/frictionlessdata/datapackage-v2-draft/pull/42)).

##### `schema.missingValues` (updated)

[`missingValues`](/standard/table-schema/#missingValues) now allow to specify labeled missingness ([#68](https://github.com/frictionlessdata/datapackage-v2-draft/pull/68)).

##### `schema.categories` (new)
##### `field.categories` (new)

[`categories`](/standard/table-schema/#categories) adds support for categorical data for the `string` and `integer` field types ([#68](https://github.com/frictionlessdata/datapackage-v2-draft/pull/68)).

##### `schema.categoriesOrdered` (new)
##### `field.categoriesOrdered` (new)

[`categoriesOrdered`](/standard/table-schema/#categoriesOrdered) adds suport for ordered categorical data for the `string` and `integer` field types ([#68](https://github.com/frictionlessdata/datapackage-v2-draft/pull/68)).
[`categoriesOrdered`](/standard/table-schema/#categoriesOrdered) adds support for ordered categorical data for the `string` and `integer` field types ([#68](https://github.com/frictionlessdata/datapackage-v2-draft/pull/68)).

## v2.0-draft

Expand Down
8 changes: 4 additions & 4 deletions content/docs/standard/table-dialect.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ id,name

Delimited formats is a group of textual formats such as CSV and TSV. Their charactistics can be expressed the following properties:

- [$schema](#schema): `https://datapackage.org/profiles/1.0/tabledialect.json` by default
- [$schema](#dollar-schema): `https://datapackage.org/profiles/1.0/tabledialect.json` by default
- [header](#header): `true` by default
- [headerRows](#headerRows): `1` by default
- [headerJoin](#headerJoin): ` ` by default
Expand Down Expand Up @@ -105,7 +105,7 @@ An example of a well-defined Table Dialect descriptor for a CSV format:

Structured formats is a group of structured or semi-structured formats such as JSON and YAML. Their charactistics can be expressed the following properties:

- [$schema](#schema): `https://datapackage.org/profiles/1.0/tabledialect.json` by default
- [$schema](#dollar-schema): `https://datapackage.org/profiles/1.0/tabledialect.json` by default
- [header](#header): `true` by default
- [property](#property): undefined by default
- [itemType](#itemType): undefined by default
Expand All @@ -115,7 +115,7 @@ Structured formats is a group of structured or semi-structured formats such as J

Spreadsheet formats is a group of sheet-based formats such as Excel or ODS. Their charactistics can be expressed the following properties:

- [$schema](#schema): `https://datapackage.org/profiles/1.0/tabledialect.json` by default
- [$schema](#dollar-schema): `https://datapackage.org/profiles/1.0/tabledialect.json` by default
- [header](#header): `true` by default
- [headerRows](#headerRows): `1` by default
- [headerJoin](#headerJoin): ` ` by default
Expand All @@ -128,7 +128,7 @@ Spreadsheet formats is a group of sheet-based formats such as Excel or ODS. Thei

Database formats is a group of formats accessing data from databases like SQLite. Their charactistics can be expressed the following properties:

- [$schema](#schema): `https://datapackage.org/profiles/1.0/tabledialect.json` by default
- [$schema](#dollar-schema): `https://datapackage.org/profiles/1.0/tabledialect.json` by default
- [table](#table): undefined by default

## Properties
Expand Down