Skip to content

Commit ed212a6

Browse files
committed
Some examples included 'isPrimary', it should be 'isPrimaryKey' as prescribed by documentation
1 parent d13ba3a commit ed212a6

24 files changed

+51
-145
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
1+
.idea
22
.DS_Store

.idea/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.idea/jsonSchemas.xml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/open-data-contract-standard.iml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

docs/examples/all/full-example.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ dataset:
5353
dataGranularity: Aggregation on columns txn_ref_dt, pmt_txn_id
5454
columns:
5555
- column: txn_ref_dt
56-
isPrimary: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
56+
isPrimaryKey: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
5757
primaryKeyPosition: -1
5858
businessName: transaction reference date
5959
logicalType: date
@@ -77,7 +77,7 @@ dataset:
7777
- 2022-10-03
7878
- 2020-01-28
7979
- column: rcvr_id
80-
isPrimary: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
80+
isPrimaryKey: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
8181
primaryKeyPosition: 1
8282
businessName: receiver id
8383
logicalType: string
@@ -92,7 +92,7 @@ dataset:
9292
tags: []
9393
classification: restricted
9494
- column: rcvr_cntry_code
95-
isPrimary: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
95+
isPrimaryKey: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
9696
primaryKeyPosition: -1
9797
businessName: receiver country code
9898
logicalType: string

0 commit comments

Comments
 (0)