File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/open_data_contract_standard Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " open-data-contract-standard"
3- version = " 3.0.4 " # in sync with spec
3+ version = " 3.0.5 " # in sync with spec
44description = " The Pydantic Model of the Open Data Contract Standard"
55readme = " README.md"
66authors = [
Original file line number Diff line number Diff line change @@ -100,17 +100,17 @@ class SchemaProperty(pyd.BaseModel):
100100 primaryKeyPosition : int | None = None
101101 logicalType : str | None = None
102102 logicalTypeOptions : dict [str , Any ] | None = None
103- required : bool | None = False
104- unique : bool | None = False
105- partitioned : bool | None = False
103+ required : bool | None = None
104+ unique : bool | None = None
105+ partitioned : bool | None = None
106106 partitionKeyPosition : int | None = None
107107 classification : str | None = None
108108 encryptedName : str | None = None
109109 transformSourceObjects : list [str ] | None = None
110110 transformLogic : str | None = None
111111 transformDescription : str | None = None
112112 examples : list [Any ] | None = None
113- criticalDataElement : bool | None = False
113+ criticalDataElement : bool | None = None
114114 quality : list [DataQuality ] | None = None
115115 properties : list ["SchemaProperty" ] | None = None
116116 items : typing .Optional ["SchemaProperty" ] = None
You can’t perform that action at this time.
0 commit comments