Skip to content

Commit 431a7c8

Browse files
committed
Release 3.0.1.post1
1 parent 29322ed commit 431a7c8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "open-data-contract-standard"
3-
version = "3.0.1" # in sync with spec
3+
version = "3.0.1.post1" # in sync with spec
44
description = "The Pydantic Model of the Open Data Contract Standard"
55
readme = "README.md"
66
authors = [

src/open_data_contract_standard/model.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class DataQuality(pyd.BaseModel):
6262
scheduler: str | None = None
6363
severity: str | None = None
6464
tags: list[str] | None = None
65-
type: str | None = 'library'
65+
type: str | None = None
6666
unit: str | None = None
6767
rule: str | None = None
6868
mustBe: Any | None = None
@@ -94,13 +94,13 @@ class SchemaProperty(pyd.BaseModel):
9494
tags: list[str] | None = None
9595
customProperties: list[CustomProperty] | None = None
9696
primaryKey: bool | None = None
97-
primaryKeyPosition: int | None = -1
97+
primaryKeyPosition: int | None = None
9898
logicalType: str | None = None
9999
logicalTypeOptions: dict[str, Any] | None = None
100100
required: bool | None = False
101101
unique: bool | None = False
102102
partitioned: bool | None = False
103-
partitionKeyPosition: int | None = -1
103+
partitionKeyPosition: int | None = None
104104
classification: str | None = None
105105
encryptedName: str | None = None
106106
transformSourceObjects: list[str] | None = None

0 commit comments

Comments
 (0)