Skip to content

Commit

Permalink
build: sets core metadata schema to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jtyoung84 committed Aug 20, 2024
1 parent 9ca3293 commit aef46a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions schemas/metadata_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -34383,10 +34383,10 @@
"type": "string"
},
"schema_version": {
"const": "1.0.1",
"default": "1.0.1",
"const": "1.0.0",
"default": "1.0.0",
"enum": [
"1.0.1"
"1.0.0"
],
"title": "Schema Version",
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion src/aind_data_schema/core/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Metadata(AindCoreModel):

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

0 comments on commit aef46a8

Please sign in to comment.