Skip to content

Commit bc0d270

Browse files
bump schema version [skip actions]
1 parent 1ce3cfb commit bc0d270

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

schemas/metadata_schema.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24433,8 +24433,8 @@
2443324433
"type": "string"
2443424434
},
2443524435
"schema_version": {
24436-
"const": "2.0.77",
24437-
"default": "2.0.77",
24436+
"const": "2.0.78",
24437+
"default": "2.0.78",
2443824438
"title": "Schema Version",
2443924439
"type": "string"
2444024440
},
@@ -38047,8 +38047,8 @@
3804738047
"type": "string"
3804838048
},
3804938049
"schema_version": {
38050-
"const": "2.0.77",
38051-
"default": "2.0.77",
38050+
"const": "2.0.78",
38051+
"default": "2.0.78",
3805238052
"title": "Schema Version",
3805338053
"type": "string"
3805438054
},

schemas/processing_schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -786,8 +786,8 @@
786786
"type": "string"
787787
},
788788
"schema_version": {
789-
"const": "2.0.77",
790-
"default": "2.0.77",
789+
"const": "2.0.78",
790+
"default": "2.0.78",
791791
"title": "Schema Version",
792792
"type": "string"
793793
},

src/aind_data_schema/core/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class Metadata(DataCoreModel):
7070

7171
_DESCRIBED_BY_URL = DataCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/metadata.py"
7272
describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL})
73-
schema_version: SkipValidation[Literal["2.0.77"]] = Field(default="2.0.77")
73+
schema_version: SkipValidation[Literal["2.0.78"]] = Field(default="2.0.78")
7474
name: str = Field(
7575
...,
7676
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
@@ -97,7 +97,7 @@ class Processing(DataCoreModel):
9797

9898
_DESCRIBED_BY_URL: str = DataCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/processing.py"
9999
describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL})
100-
schema_version: SkipValidation[Literal["2.0.77"]] = Field(default="2.0.77")
100+
schema_version: SkipValidation[Literal["2.0.78"]] = Field(default="2.0.78")
101101

102102
data_processes: List[DataProcess] = Field(..., title="Data processing")
103103
pipelines: Optional[List[Code]] = Field(

0 commit comments

Comments
 (0)