Skip to content

Commit aef46a8

Browse files
committed
build: sets core metadata schema to v1.0.0
1 parent 9ca3293 commit aef46a8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

schemas/metadata_schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34383,10 +34383,10 @@
3438334383
"type": "string"
3438434384
},
3438534385
"schema_version": {
34386-
"const": "1.0.1",
34387-
"default": "1.0.1",
34386+
"const": "1.0.0",
34387+
"default": "1.0.0",
3438834388
"enum": [
34389-
"1.0.1"
34389+
"1.0.0"
3439034390
],
3439134391
"title": "Schema Version",
3439234392
"type": "string"

src/aind_data_schema/core/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Metadata(AindCoreModel):
4848

4949
_DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/metadata.py"
5050
describedBy: str = Field(_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL})
51-
schema_version: Literal["1.0.1"] = Field("1.0.1")
51+
schema_version: Literal["1.0.0"] = Field("1.0.0")
5252
id: UUID = Field(
5353
default_factory=uuid4,
5454
alias="_id",

0 commit comments

Comments
 (0)