Skip to content

Commit 0033eba

Browse files
authored
Merge pull request #56 from bitol-io/dev
Change schema file naming
2 parents 1642598 + 03cd27c commit 0033eba

File tree

7 files changed

+544
-10
lines changed

7 files changed

+544
-10
lines changed

.gitignore

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

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

docs/examples/quality/column-completeness.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dataset:
1414
dataGranularity: Raw records
1515
columns:
1616
- column: UniqueID
17-
isPrimary: true
17+
isPrimaryKey: true
1818
businessName: Unique identifier
1919
logicalType: number
2020
physicalType: int

docs/examples/quality/column-validity.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dataset:
1414
dataGranularity: Raw records
1515
columns:
1616
- column: UniqueID
17-
isPrimary: true
17+
isPrimaryKey: true
1818
businessName: Unique identifier
1919
logicalType: number
2020
physicalType: int

docs/standard.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ dataset:
132132
dataGranularity: Aggregation on columns txn_ref_dt, pmt_txn_id
133133
columns:
134134
- column: txn_ref_dt
135-
isPrimary: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
135+
isPrimaryKey: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
136136
primaryKeyPosition: -1
137137
businessName: transaction reference date
138138
logicalType: date
@@ -156,7 +156,7 @@ dataset:
156156
- 2022-10-03
157157
- 2020-01-28
158158
- column: rcvr_id
159-
isPrimary: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
159+
isPrimaryKey: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
160160
primaryKeyPosition: 1
161161
businessName: receiver id
162162
logicalType: string
@@ -172,7 +172,7 @@ dataset:
172172
classification: restricted
173173
encryptedColumnName: enc_rcvr_id
174174
- column: rcvr_cntry_code
175-
isPrimary: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
175+
isPrimaryKey: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
176176
primaryKeyPosition: -1
177177
businessName: receiver country code
178178
logicalType: string
@@ -306,7 +306,7 @@ dataset:
306306
dataset:
307307
- table: tab1
308308
- column: rcvr_id
309-
isPrimary: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
309+
isPrimaryKey: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
310310
businessName: receiver id
311311
# ...
312312
quality:
File renamed without changes.

0 commit comments

Comments
 (0)