Skip to content

Commit a7cec59

Browse files
bump schema version [skip actions]
1 parent 3a1ded8 commit a7cec59

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

examples/data_description.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/core/data_description.py",
3-
"schema_version": "0.13.0",
3+
"schema_version": "0.13.1",
44
"license": "CC-BY-4.0",
55
"platform": {
66
"name": "Electrophysiology platform",

schemas/data_description_schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,8 +1006,8 @@
10061006
"type": "string"
10071007
},
10081008
"schema_version": {
1009-
"const": "0.13.0",
1010-
"default": "0.13.0",
1009+
"const": "0.13.1",
1010+
"default": "0.13.1",
10111011
"title": "Schema Version"
10121012
},
10131013
"license": {
@@ -1202,7 +1202,7 @@
12021202
"project_name": {
12031203
"anyOf": [
12041204
{
1205-
"pattern": "^[^<>:;\"/|? \\_]+$",
1205+
"pattern": "^[^<>:;\"/|?\\_]+$",
12061206
"type": "string"
12071207
},
12081208
{

schemas/metadata_schema.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3673,8 +3673,8 @@
36733673
"type": "string"
36743674
},
36753675
"schema_version": {
3676-
"const": "0.13.0",
3677-
"default": "0.13.0",
3676+
"const": "0.13.1",
3677+
"default": "0.13.1",
36783678
"title": "Schema Version"
36793679
},
36803680
"license": {
@@ -3869,7 +3869,7 @@
38693869
"project_name": {
38703870
"anyOf": [
38713871
{
3872-
"pattern": "^[^<>:;\"/|? \\_]+$",
3872+
"pattern": "^[^<>:;\"/|?\\_]+$",
38733873
"type": "string"
38743874
},
38753875
{
@@ -27692,8 +27692,8 @@
2769227692
"type": "string"
2769327693
},
2769427694
"schema_version": {
27695-
"const": "0.1.31",
27696-
"default": "0.1.31",
27695+
"const": "0.1.32",
27696+
"default": "0.1.32",
2769727697
"title": "Schema Version"
2769827698
},
2769927699
"_id": {

src/aind_data_schema/core/data_description.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class DataDescription(AindCoreModel):
9595

9696
_DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/data_description.py"
9797
describedBy: str = Field(_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL})
98-
schema_version: Literal["0.13.0"] = Field("0.13.0", title="Schema Version")
98+
schema_version: Literal["0.13.1"] = Field("0.13.1")
9999
license: Literal["CC-BY-4.0"] = Field("CC-BY-4.0", title="License")
100100

101101
platform: Platform.ONE_OF = Field(

src/aind_data_schema/core/metadata.py

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

4747
_DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/metadata.py"
4848
describedBy: str = Field(_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL})
49-
schema_version: Literal["0.1.31"] = Field("0.1.31")
49+
schema_version: Literal["0.1.32"] = Field("0.1.32")
5050
id: UUID = Field(
5151
default_factory=uuid4,
5252
alias="_id",

0 commit comments

Comments
 (0)