Skip to content

Commit

Permalink
Merge pull request #56 from bitol-io/dev
Browse files Browse the repository at this point in the history
Change schema file naming
  • Loading branch information
pflooky authored Jun 12, 2024
2 parents 1642598 + 03cd27c commit 0033eba
Show file tree
Hide file tree
Showing 7 changed files with 544 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

.idea
.DS_Store
.idea
site
Expand Down
6 changes: 3 additions & 3 deletions docs/examples/all/full-example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dataset:
dataGranularity: Aggregation on columns txn_ref_dt, pmt_txn_id
columns:
- column: txn_ref_dt
isPrimary: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
isPrimaryKey: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
primaryKeyPosition: -1
businessName: transaction reference date
logicalType: date
Expand All @@ -77,7 +77,7 @@ dataset:
- 2022-10-03
- 2020-01-28
- column: rcvr_id
isPrimary: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
isPrimaryKey: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
primaryKeyPosition: 1
businessName: receiver id
logicalType: string
Expand All @@ -92,7 +92,7 @@ dataset:
tags: []
classification: restricted
- column: rcvr_cntry_code
isPrimary: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
isPrimaryKey: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
primaryKeyPosition: -1
businessName: receiver country code
logicalType: string
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/quality/column-completeness.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dataset:
dataGranularity: Raw records
columns:
- column: UniqueID
isPrimary: true
isPrimaryKey: true
businessName: Unique identifier
logicalType: number
physicalType: int
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/quality/column-validity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dataset:
dataGranularity: Raw records
columns:
- column: UniqueID
isPrimary: true
isPrimaryKey: true
businessName: Unique identifier
logicalType: number
physicalType: int
Expand Down
8 changes: 4 additions & 4 deletions docs/standard.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ dataset:
dataGranularity: Aggregation on columns txn_ref_dt, pmt_txn_id
columns:
- column: txn_ref_dt
isPrimary: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
isPrimaryKey: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
primaryKeyPosition: -1
businessName: transaction reference date
logicalType: date
Expand All @@ -156,7 +156,7 @@ dataset:
- 2022-10-03
- 2020-01-28
- column: rcvr_id
isPrimary: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
isPrimaryKey: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
primaryKeyPosition: 1
businessName: receiver id
logicalType: string
Expand All @@ -172,7 +172,7 @@ dataset:
classification: restricted
encryptedColumnName: enc_rcvr_id
- column: rcvr_cntry_code
isPrimary: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
isPrimaryKey: false # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
primaryKeyPosition: -1
businessName: receiver country code
logicalType: string
Expand Down Expand Up @@ -306,7 +306,7 @@ dataset:
dataset:
- table: tab1
- column: rcvr_id
isPrimary: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
isPrimaryKey: true # NEW in v2.1.0, Optional, default value is false, indicates whether the column is primary key in the table.
businessName: receiver id
# ...
quality:
Expand Down
File renamed without changes.
Loading

0 comments on commit 0033eba

Please sign in to comment.