File tree 2 files changed +4
-4
lines changed
src/open_data_contract_standard
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " open-data-contract-standard"
3
- version = " 3.0.1" # in sync with spec
3
+ version = " 3.0.1.post1 " # in sync with spec
4
4
description = " The Pydantic Model of the Open Data Contract Standard"
5
5
readme = " README.md"
6
6
authors = [
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ class DataQuality(pyd.BaseModel):
62
62
scheduler : str | None = None
63
63
severity : str | None = None
64
64
tags : list [str ] | None = None
65
- type : str | None = 'library'
65
+ type : str | None = None
66
66
unit : str | None = None
67
67
rule : str | None = None
68
68
mustBe : Any | None = None
@@ -94,13 +94,13 @@ class SchemaProperty(pyd.BaseModel):
94
94
tags : list [str ] | None = None
95
95
customProperties : list [CustomProperty ] | None = None
96
96
primaryKey : bool | None = None
97
- primaryKeyPosition : int | None = - 1
97
+ primaryKeyPosition : int | None = None
98
98
logicalType : str | None = None
99
99
logicalTypeOptions : dict [str , Any ] | None = None
100
100
required : bool | None = False
101
101
unique : bool | None = False
102
102
partitioned : bool | None = False
103
- partitionKeyPosition : int | None = - 1
103
+ partitionKeyPosition : int | None = None
104
104
classification : str | None = None
105
105
encryptedName : str | None = None
106
106
transformSourceObjects : list [str ] | None = None
You can’t perform that action at this time.
0 commit comments