Skip to content

Commit fa7e7dc

Browse files
bump schema version [skip actions]
1 parent 0d4538f commit fa7e7dc

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

schemas/metadata_schema.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24948,8 +24948,8 @@
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
},
@@ -37389,8 +37389,8 @@
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
},

schemas/processing_schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -736,8 +736,8 @@
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
},

src/aind_data_schema/core/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.",

src/aind_data_schema/core/processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)