Skip to content

Commit 0dec63f

Browse files
bump schema version [skip actions]
1 parent 7e0dc93 commit 0dec63f

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

schemas/mri_session_schema.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,11 +1512,15 @@
15121512
"title": "Subject position"
15131513
},
15141514
"voxel_sizes": {
1515-
"allOf": [
1515+
"anyOf": [
15161516
{
15171517
"$ref": "#/$defs/Scale3dTransform"
1518+
},
1519+
{
1520+
"type": "null"
15181521
}
15191522
],
1523+
"default": null,
15201524
"description": "Resolution",
15211525
"title": "Voxel sizes"
15221526
},
@@ -1562,7 +1566,6 @@
15621566
"echo_time",
15631567
"repetition_time",
15641568
"subject_position",
1565-
"voxel_sizes",
15661569
"additional_scan_parameters"
15671570
],
15681571
"title": "MRIScan",
@@ -3249,8 +3252,8 @@
32493252
"type": "string"
32503253
},
32513254
"schema_version": {
3252-
"const": "0.3.3",
3253-
"default": "0.3.3",
3255+
"const": "0.3.4",
3256+
"default": "0.3.4",
32543257
"title": "Schema Version"
32553258
},
32563259
"subject_id": {

src/aind_data_schema/core/mri_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class MriSession(AindCoreModel):
9292

9393
_DESCRIBED_BY_URL = AindCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/mri_session.py"
9494
describedBy: str = Field(_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL})
95-
schema_version: Literal["0.3.3"] = Field("0.3.3")
95+
schema_version: Literal["0.3.4"] = Field("0.3.4")
9696
subject_id: str = Field(
9797
...,
9898
description="Unique identifier for the subject. If this is not a Allen LAS ID, indicate this in the Notes.",

0 commit comments

Comments
 (0)