Skip to content

Commit

Permalink
Merge branch 'release-v1.0.0' of github.com:AllenNeuralDynamics/aind-…
Browse files Browse the repository at this point in the history
…data-schema into release-v1.0.0
  • Loading branch information
jtyoung84 committed Aug 20, 2024
2 parents 446d6c0 + ddf272a commit debf76c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
54 changes: 27 additions & 27 deletions schemas/metadata_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
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.0"] = Field("1.0.0")
schema_version: Literal["1.0.1"] = Field("1.0.1")
id: UUID = Field(
default_factory=uuid4,
alias="_id",
Expand Down

0 comments on commit debf76c

Please sign in to comment.