File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
src/aind_data_schema/core Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 2494824948 "type": "string"
2494924949 },
2495024950 "schema_version": {
24951- "const": "2.1.3 ",
24952- "default": "2.1.3 ",
24951+ "const": "2.1.4 ",
24952+ "default": "2.1.4 ",
2495324953 "title": "Schema Version",
2495424954 "type": "string"
2495524955 },
3738937389 "type": "string"
3739037390 },
3739137391 "schema_version": {
37392- "const": "2.2.0 ",
37393- "default": "2.2.0 ",
37392+ "const": "2.2.1 ",
37393+ "default": "2.2.1 ",
3739437394 "title": "Schema Version",
3739537395 "type": "string"
3739637396 },
Original file line number Diff line number Diff line change 736736 "type" : " string"
737737 },
738738 "schema_version" : {
739- "const" : " 2.1.3 " ,
740- "default" : " 2.1.3 " ,
739+ "const" : " 2.1.4 " ,
740+ "default" : " 2.1.4 " ,
741741 "title" : " Schema Version" ,
742742 "type" : " string"
743743 },
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ class Metadata(DataCoreModel):
7171
7272 _DESCRIBED_BY_URL = DataCoreModel ._DESCRIBED_BY_BASE_URL .default + "aind_data_schema/core/metadata.py"
7373 describedBy : str = Field (default = _DESCRIBED_BY_URL , json_schema_extra = {"const" : _DESCRIBED_BY_URL })
74- schema_version : SkipValidation [Literal ["2.2.0 " ]] = Field (default = "2.2.0 " )
74+ schema_version : SkipValidation [Literal ["2.2.1 " ]] = Field (default = "2.2.1 " )
7575 name : str = Field (
7676 ...,
7777 description = "Name of the data asset." ,
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ class Processing(DataCoreModel):
9999
100100 _DESCRIBED_BY_URL : str = DataCoreModel ._DESCRIBED_BY_BASE_URL .default + "aind_data_schema/core/processing.py"
101101 describedBy : str = Field (default = _DESCRIBED_BY_URL , json_schema_extra = {"const" : _DESCRIBED_BY_URL })
102- schema_version : SkipValidation [Literal ["2.1.3 " ]] = Field (default = "2.1.3 " )
102+ schema_version : SkipValidation [Literal ["2.1.4 " ]] = Field (default = "2.1.4 " )
103103
104104 data_processes : List [DataProcess ] = Field (..., title = "Data processing" )
105105 pipelines : Optional [List [Code ]] = Field (
You can’t perform that action at this time.
0 commit comments