diff --git a/schemas/metadata_schema.json b/schemas/metadata_schema.json index 5448c73b6..fc9efb29a 100644 --- a/schemas/metadata_schema.json +++ b/schemas/metadata_schema.json @@ -4872,10 +4872,10 @@ "type": "string" }, "schema_version": { - "const": "0.13.12", - "default": "0.13.12", + "const": "1.0.0", + "default": "1.0.0", "enum": [ - "0.13.12" + "1.0.0" ], "title": "Schema Version", "type": "string" @@ -13176,10 +13176,10 @@ "type": "string" }, "schema_version": { - "const": "0.10.29", - "default": "0.10.29", + "const": "1.0.0", + "default": "1.0.0", "enum": [ - "0.10.29" + "1.0.0" ], "title": "Schema Version", "type": "string" @@ -24205,10 +24205,10 @@ "type": "string" }, "schema_version": { - "const": "0.13.15", - "default": "0.13.15", + "const": "1.0.0", + "default": "1.0.0", "enum": [ - "0.13.15" + "1.0.0" ], "title": "Schema Version", "type": "string" @@ -24329,10 +24329,10 @@ "type": "string" }, "schema_version": { - "const": "0.4.9", - "default": "0.4.9", + "const": "1.0.0", + "default": "1.0.0", "enum": [ - "0.4.9" + "1.0.0" ], "title": "Schema Version", "type": "string" @@ -24711,10 +24711,10 @@ "type": "string" }, "schema_version": { - "const": "0.0.1", - "default": "0.0.1", + "const": "1.0.0", + "default": "1.0.0", "enum": [ - "0.0.1" + "1.0.0" ], "title": "Schema Version", "type": "string" @@ -26606,10 +26606,10 @@ "type": "string" }, "schema_version": { - "const": "0.5.5", - "default": "0.5.5", + "const": "1.0.0", + "default": "1.0.0", "enum": [ - "0.5.5" + "1.0.0" ], "title": "Schema Version", "type": "string" @@ -28742,10 +28742,10 @@ "type": "string" }, "schema_version": { - "const": "0.3.5", - "default": "0.3.5", + "const": "1.0.0", + "default": "1.0.0", "enum": [ - "0.3.5" + "1.0.0" ], "title": "Schema Version", "type": "string" @@ -30998,10 +30998,10 @@ "type": "string" }, "schema_version": { - "const": "0.5.10", - "default": "0.5.10", + "const": "1.0.0", + "default": "1.0.0", "enum": [ - "0.5.10" + "1.0.0" ], "title": "Schema Version", "type": "string" @@ -34383,10 +34383,10 @@ "type": "string" }, "schema_version": { - "const": "0.2.33", - "default": "0.2.33", + "const": "1.0.1", + "default": "1.0.1", "enum": [ - "0.2.33" + "1.0.1" ], "title": "Schema Version", "type": "string" diff --git a/src/aind_data_schema/core/metadata.py b/src/aind_data_schema/core/metadata.py index f7fd07e03..e9ec22d5a 100644 --- a/src/aind_data_schema/core/metadata.py +++ b/src/aind_data_schema/core/metadata.py @@ -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.0"] = Field("1.0.0") + schema_version: Literal["1.0.1"] = Field("1.0.1") id: UUID = Field( default_factory=uuid4, alias="_id",